diff --git a/corpus/programs.txt b/corpus/programs.txt index 5ff8c6f..e77b32d 100644 --- a/corpus/programs.txt +++ b/corpus/programs.txt @@ -40,3 +40,13 @@ f=g \ (word)) (command_name (word)) (word))) + +============================= +Escaped whitespace +============================ + +echo 1 \ 2 \ 3 + +--- + +(program (command (command_name (word)) (word) (word) (word))) diff --git a/grammar.js b/grammar.js index 6c3edb1..3496a4f 100644 --- a/grammar.js +++ b/grammar.js @@ -41,7 +41,7 @@ module.exports = grammar({ extras: $ => [ $.comment, - token(choice(/\s/, '\\\n')), + /\\?\s/, ], word: $ => $.word, diff --git a/script/known-failures.txt b/script/known-failures.txt index 0f1fca4..7722fa7 100644 --- a/script/known-failures.txt +++ b/script/known-failures.txt @@ -19,7 +19,6 @@ examples/bash-it/completion/available/packer.completion.bash examples/bash-it/completion/available/vault.completion.bash examples/bash-it/completion/available/docker.completion.bash examples/bash-it/completion/available/tmux.completion.bash -examples/bash-it/completion/available/virsh.completion.bash examples/bash-it/completion/available/apm.completion.bash examples/bash-it/completion/available/git_flow.completion.bash examples/bash-it/lib/preexec.bash @@ -38,4 +37,3 @@ examples/bash-it/themes/nwinkler_random_colors/nwinkler_random_colors.theme.bash examples/bash-it/themes/mbriggs/mbriggs.theme.bash examples/bash-it/themes/kitsune/kitsune.theme.bash examples/bash-it/themes/doubletime/doubletime.theme.bash -examples/bash-it/themes/duru/duru.theme.bash diff --git a/src/grammar.json b/src/grammar.json index 070ff2a..43e2f7d 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2133,20 +2133,8 @@ "name": "comment" }, { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\s" - }, - { - "type": "STRING", - "value": "\\\n" - } - ] - } + "type": "PATTERN", + "value": "\\\\?\\s" } ], "conflicts": [], diff --git a/src/parser.c b/src/parser.c index 54d5c0f..7e82bea 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 2725 +#define STATE_COUNT 3180 #define SYMBOL_COUNT 147 #define ALIAS_COUNT 5 #define TOKEN_COUNT 92 @@ -1015,78 +1015,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (lookahead == 0) ADVANCE(1); - if (lookahead == '!') + if (lookahead == '\n') ADVANCE(2); + if (lookahead == '!') + ADVANCE(3); if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') ADVANCE(6); - if (lookahead == '$') + if (lookahead == '#') ADVANCE(7); + if (lookahead == '$') + ADVANCE(8); if (lookahead == '%') - ADVANCE(10); - if (lookahead == '&') ADVANCE(11); + if (lookahead == '&') + ADVANCE(12); if (lookahead == '\'') - ADVANCE(15); + ADVANCE(16); if (lookahead == '(') - ADVANCE(17); - if (lookahead == ')') ADVANCE(18); - if (lookahead == '*') + if (lookahead == ')') ADVANCE(19); - if (lookahead == '+') + if (lookahead == '*') ADVANCE(20); + if (lookahead == '+') + ADVANCE(21); if (lookahead == '-') - ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') + if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') + if (lookahead == '0') ADVANCE(25); + if (lookahead == ':') + ADVANCE(26); if (lookahead == ';') - ADVANCE(28); + ADVANCE(29); if (lookahead == '<') - ADVANCE(30); + ADVANCE(31); if (lookahead == '=') - ADVANCE(36); + ADVANCE(37); if (lookahead == '>') - ADVANCE(39); + ADVANCE(40); if (lookahead == '?') - ADVANCE(43); - if (lookahead == '@') ADVANCE(44); - if (lookahead == '[') + if (lookahead == '@') ADVANCE(45); + if (lookahead == '[') + ADVANCE(46); if (lookahead == '\\') - ADVANCE(47); - if (lookahead == ']') ADVANCE(48); - if (lookahead == '_') + if (lookahead == ']') ADVANCE(49); - if (lookahead == '`') + if (lookahead == '_') ADVANCE(50); - if (lookahead == '{') + if (lookahead == '`') ADVANCE(51); - if (lookahead == '|') + if (lookahead == 'e') ADVANCE(52); + if (lookahead == 'i') + ADVANCE(56); + if (lookahead == '{') + ADVANCE(58); + if (lookahead == '|') + ADVANCE(59); if (lookahead == '}') - ADVANCE(55); + ADVANCE(62); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0); - ADVANCE(4); + ADVANCE(5); END_STATE(); case 1: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 2: + ACCEPT_TOKEN(anon_sym_LF); + END_STATE(); + case 3: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1100,58 +1108,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 3: + case 4: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 4: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(3); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); case 5: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 6: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 7: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') - ADVANCE(8); - if (lookahead == '{') - ADVANCE(9); - END_STATE(); - case 8: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - END_STATE(); - case 9: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); - END_STATE(); - case 10: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1165,45 +1135,83 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); + END_STATE(); + case 6: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 7: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 8: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') + ADVANCE(9); + if (lookahead == '{') + ADVANCE(10); + END_STATE(); + case 9: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + END_STATE(); + case 10: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); case 11: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == '>') - ADVANCE(13); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 12: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 13: - ACCEPT_TOKEN(anon_sym_AMP_GT); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') + ADVANCE(13); if (lookahead == '>') ADVANCE(14); END_STATE(); - case 14: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + case 13: + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 15: - if (lookahead == '\'') - ADVANCE(16); - if (lookahead != 0) + case 14: + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') ADVANCE(15); END_STATE(); + case 15: + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + END_STATE(); case 16: - ACCEPT_TOKEN(sym_raw_string); + if (lookahead == '\'') + ADVANCE(17); + if (lookahead != 0) + ADVANCE(16); END_STATE(); case 17: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(sym_raw_string); END_STATE(); case 18: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 19: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 20: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1217,14 +1225,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 20: + case 21: ACCEPT_TOKEN(sym_word); if (lookahead == '=') - ADVANCE(21); + ADVANCE(22); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1236,31 +1244,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 21: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') - ADVANCE(3); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); case 22: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1274,15 +1263,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); case 23: - ACCEPT_TOKEN(anon_sym_SLASH); - END_STATE(); - case 24: - ACCEPT_TOKEN(anon_sym_0); + ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1296,16 +1282,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); + END_STATE(); + case 24: + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 25: + ACCEPT_TOKEN(anon_sym_0); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 26: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == '-') - ADVANCE(26); - if (lookahead == '?') ADVANCE(27); + if (lookahead == '?') + ADVANCE(28); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1320,31 +1328,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 26: - ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') - ADVANCE(3); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); case 27: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); + ACCEPT_TOKEN(anon_sym_COLON_DASH); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1358,52 +1347,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') - ADVANCE(29); + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == ';') + ADVANCE(30); END_STATE(); case 30: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(31); - if (lookahead == '(') - ADVANCE(32); - if (lookahead == '<') - ADVANCE(33); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_LT_AMP); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(32); + if (lookahead == '(') + ADVANCE(33); + if (lookahead == '<') + ADVANCE(34); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); + ACCEPT_TOKEN(anon_sym_LT_AMP); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(35); + ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') + ADVANCE(35); + if (lookahead == '<') + ADVANCE(36); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); case 36: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); + case 37: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') - ADVANCE(37); - if (lookahead == '\\') - ADVANCE(3); - if (lookahead == '~') ADVANCE(38); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == '~') + ADVANCE(39); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1415,31 +1423,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '~')) - ADVANCE(4); - END_STATE(); - case 37: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') - ADVANCE(3); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1453,49 +1442,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); case 39: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') - ADVANCE(40); - if (lookahead == '(') - ADVANCE(41); - if (lookahead == '>') - ADVANCE(42); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_GT_AMP); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') + ADVANCE(41); + if (lookahead == '(') + ADVANCE(42); + if (lookahead == '>') + ADVANCE(43); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); + ACCEPT_TOKEN(anon_sym_GT_AMP); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') - ADVANCE(3); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1509,33 +1498,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') - ADVANCE(46); - END_STATE(); - case 46: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); - END_STATE(); - case 47: - if (lookahead == '\n') - SKIP(0); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 48: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 49: - ACCEPT_TOKEN(anon_sym__); + ACCEPT_TOKEN(anon_sym_AT); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1549,335 +1517,500 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 50: - ACCEPT_TOKEN(anon_sym_BQUOTE); - END_STATE(); - case 51: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 52: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') - ADVANCE(53); - if (lookahead == '|') - ADVANCE(54); - END_STATE(); - case 53: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); - END_STATE(); - case 54: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 55: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 56: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(58); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(59); - if (lookahead == '>') - ADVANCE(39); + END_STATE(); + case 46: + ACCEPT_TOKEN(anon_sym_LBRACK); if (lookahead == '[') - ADVANCE(45); - if (lookahead == '\\') - ADVANCE(60); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(61); + ADVANCE(47); + END_STATE(); + case 47: + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + END_STATE(); + case 48: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(56); + SKIP(0); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 49: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 50: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 51: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 52: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 's') + ADVANCE(53); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 53: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'a') + ADVANCE(54); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 54: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'c') + ADVANCE(55); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 56: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'n') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 57: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 58: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') + ADVANCE(60); + if (lookahead == '|') + ADVANCE(61); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_PIPE_AMP); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 62: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 63: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(65); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(66); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(46); + if (lookahead == '\\') + ADVANCE(67); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(63); if ((lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 57: + case 64: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n') - ADVANCE(57); - END_STATE(); - case 58: - if (lookahead == '>') - ADVANCE(13); - END_STATE(); - case 59: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(31); - if (lookahead == '(') - ADVANCE(32); - END_STATE(); - case 60: - if (lookahead == '\n') - SKIP(56); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 61: - ACCEPT_TOKEN(sym__special_characters); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(61); - END_STATE(); - case 62: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '+') - ADVANCE(63); - if (lookahead == '=') - ADVANCE(65); - if (lookahead == '[') - ADVANCE(66); - if (lookahead == '\\') - SKIP(67); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(62); - END_STATE(); - case 63: - if (lookahead == '=') ADVANCE(64); END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') + ADVANCE(14); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(32); + if (lookahead == '(') + ADVANCE(33); END_STATE(); case 67: - if (lookahead == '\n') - SKIP(62); - END_STATE(); - case 68: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '(') - ADVANCE(69); - if (lookahead == '\\') - SKIP(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(68); + SKIP(63); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 68: + ACCEPT_TOKEN(sym__special_characters); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + END_STATE(); + case 69: + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '+') + ADVANCE(70); + if (lookahead == '=') + ADVANCE(72); + if (lookahead == '[') + ADVANCE(73); + if (lookahead == '\\') + SKIP(74); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(69); + END_STATE(); + case 70: + if (lookahead == '=') + ADVANCE(71); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 74: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(69); + END_STATE(); + case 75: + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '(') + ADVANCE(76); + if (lookahead == '\\') + SKIP(78); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(72); + ADVANCE(79); END_STATE(); - case 69: + case 76: if (lookahead == '(') - ADVANCE(70); + ADVANCE(77); END_STATE(); - case 70: + case 77: ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); - case 71: - if (lookahead == '\n') - SKIP(68); + case 78: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(75); END_STATE(); - case 72: + case 79: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(72); + ADVANCE(79); END_STATE(); - case 73: + case 80: if (lookahead == '\"') - ADVANCE(5); + ADVANCE(6); if (lookahead == '#') - ADVANCE(57); + ADVANCE(64); if (lookahead == '$') - ADVANCE(7); + ADVANCE(8); if (lookahead == '&') - ADVANCE(58); + ADVANCE(65); if (lookahead == '\'') - ADVANCE(15); + ADVANCE(16); if (lookahead == '<') - ADVANCE(59); + ADVANCE(66); if (lookahead == '>') - ADVANCE(39); + ADVANCE(40); if (lookahead == '[') - ADVANCE(61); + ADVANCE(68); if (lookahead == '\\') - ADVANCE(74); - 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(73); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 74: - if (lookahead == '\n') - SKIP(73); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 75: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(58); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(59); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(45); - if (lookahead == '\\') - ADVANCE(76); - 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(75); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 76: - if (lookahead == '\n') - SKIP(75); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 77: - if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '-') - ADVANCE(78); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(82); if (lookahead == ']') - ADVANCE(61); + ADVANCE(68); if (lookahead == '`') - ADVANCE(50); + ADVANCE(51); if (lookahead == '{') - ADVANCE(61); + ADVANCE(68); if (lookahead == '}') - ADVANCE(61); + ADVANCE(68); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(77); + SKIP(80); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 78: + case 81: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(80); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 82: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(65); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(66); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(46); + if (lookahead == '\\') + ADVANCE(83); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(82); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 83: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(82); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 84: + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == '-') + ADVANCE(85); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(89); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(84); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 85: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(79); + ADVANCE(86); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1890,104 +2023,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < 'A' || lookahead > ']') && (lookahead < '`' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 79: + case 86: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(79); - END_STATE(); - case 80: - if (lookahead == '(') - ADVANCE(32); - END_STATE(); - case 81: - if (lookahead == '(') - ADVANCE(41); - END_STATE(); - case 82: - if (lookahead == '\n') - SKIP(77); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 83: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(85); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') ADVANCE(86); + END_STATE(); + case 87: + if (lookahead == '(') + ADVANCE(33); + END_STATE(); + case 88: + if (lookahead == '(') + ADVANCE(42); + END_STATE(); + case 89: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(84); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 90: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(91); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(92); if (lookahead == ']') - ADVANCE(61); + ADVANCE(68); if (lookahead == '`') - ADVANCE(50); + ADVANCE(51); if (lookahead == '{') - ADVANCE(61); + ADVANCE(68); if (lookahead == '|') - ADVANCE(52); + ADVANCE(59); if (lookahead == '}') - ADVANCE(61); + ADVANCE(68); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(83); + SKIP(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(87); + ADVANCE(93); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 84: - ACCEPT_TOKEN(anon_sym_LF); - END_STATE(); - case 85: + case 91: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') - ADVANCE(12); + ADVANCE(13); END_STATE(); - case 86: - if (lookahead == '\n') - SKIP(83); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); + case 92: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(90); + if (lookahead != 0) + ADVANCE(5); END_STATE(); - case 87: + case 93: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(87); + ADVANCE(93); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2000,59 +2128,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < 'A' || lookahead > ']') && (lookahead < '_' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 88: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '\"') ADVANCE(5); + END_STATE(); + case 94: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(57); + ADVANCE(64); if (lookahead == '$') - ADVANCE(7); + ADVANCE(8); if (lookahead == '&') - ADVANCE(11); + ADVANCE(12); if (lookahead == '\'') - ADVANCE(15); + ADVANCE(16); if (lookahead == ';') - ADVANCE(28); + ADVANCE(29); if (lookahead == '<') - ADVANCE(30); + ADVANCE(31); if (lookahead == '=') - ADVANCE(89); + ADVANCE(95); if (lookahead == '>') - ADVANCE(39); + ADVANCE(40); if (lookahead == '[') - ADVANCE(61); + ADVANCE(68); if (lookahead == '\\') - ADVANCE(90); + ADVANCE(96); if (lookahead == ']') - ADVANCE(61); + ADVANCE(68); if (lookahead == '`') - ADVANCE(50); + ADVANCE(51); if (lookahead == '{') - ADVANCE(61); + ADVANCE(68); if (lookahead == '|') - ADVANCE(52); + ADVANCE(59); if (lookahead == '}') - ADVANCE(61); + ADVANCE(68); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(88); + SKIP(94); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 89: + case 95: ACCEPT_TOKEN(sym_word); if (lookahead == '=') - ADVANCE(37); - if (lookahead == '\\') - ADVANCE(3); - if (lookahead == '~') ADVANCE(38); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == '~') + ADVANCE(39); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2064,1082 +2192,1089 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '~')) - ADVANCE(4); - END_STATE(); - case 90: - if (lookahead == '\n') - SKIP(88); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 91: - if (lookahead == '\"') ADVANCE(5); - if (lookahead == '#') - ADVANCE(92); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '\\') - ADVANCE(96); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(97); - if (lookahead != 0) - ADVANCE(93); - END_STATE(); - case 92: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(93); - if (lookahead == '\\') - ADVANCE(95); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(92); - END_STATE(); - case 93: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') - ADVANCE(94); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(93); - END_STATE(); - case 94: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(93); - if (lookahead == '\\') - ADVANCE(94); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(93); - if (lookahead != 0) - ADVANCE(93); - END_STATE(); - case 95: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(93); - if (lookahead == '\\') - ADVANCE(95); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(92); - if (lookahead != 0) - ADVANCE(92); END_STATE(); case 96: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(97); - if (lookahead == '\\') - ADVANCE(94); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(93); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(94); if (lookahead != 0) - ADVANCE(93); + ADVANCE(5); END_STATE(); case 97: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '#') - ADVANCE(92); - if (lookahead == '\\') - ADVANCE(96); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(97); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - lookahead != '`') - ADVANCE(93); - END_STATE(); - case 98: if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') ADVANCE(6); + if (lookahead == '#') + ADVANCE(98); if (lookahead == '$') - ADVANCE(99); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '*') - ADVANCE(100); - if (lookahead == '-') - ADVANCE(101); - if (lookahead == '0') + ADVANCE(8); + if (lookahead == '\\') ADVANCE(102); - if (lookahead == '?') - ADVANCE(103); - if (lookahead == '@') - ADVANCE(104); - if (lookahead == '\\') - SKIP(105); - if (lookahead == '_') - ADVANCE(106); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(98); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(72); - END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 101: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_0); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(72); - END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 104: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 105: - if (lookahead == '\n') - SKIP(98); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym__); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(72); - END_STATE(); - case 107: - if (lookahead == '!') - ADVANCE(108); - if (lookahead == '#') - ADVANCE(6); - if (lookahead == '$') - ADVANCE(99); - if (lookahead == '*') - ADVANCE(100); - if (lookahead == '-') - ADVANCE(101); - if (lookahead == '0') - ADVANCE(102); - if (lookahead == '?') - ADVANCE(103); - if (lookahead == '@') - ADVANCE(104); - if (lookahead == '\\') - SKIP(109); - if (lookahead == '_') - ADVANCE(106); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(107); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(72); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 109: - if (lookahead == '\n') - SKIP(107); - END_STATE(); - case 110: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(89); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(111); - if (lookahead == ']') - ADVANCE(61); if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(110); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(4); - END_STATE(); - case 111: - if (lookahead == '\n') - SKIP(110); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 112: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '\\') - SKIP(113); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(112); - END_STATE(); - case 113: - if (lookahead == '\n') - SKIP(112); - END_STATE(); - case 114: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(59); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(115); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(114); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(4); - END_STATE(); - case 115: - if (lookahead == '\n') - SKIP(114); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 116: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(89); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(117); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(116); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(4); - END_STATE(); - case 117: - if (lookahead == '\n') - SKIP(116); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 118: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(119); - 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(118); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 119: - if (lookahead == '\n') - SKIP(118); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 120: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(121); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == '-') - ADVANCE(78); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(122); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(120); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 121: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 122: - if (lookahead == '\n') - SKIP(120); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 123: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(121); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(124); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(123); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 124: - if (lookahead == '\n') - SKIP(123); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 125: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == '\\') - SKIP(126); - if (lookahead == '{') ADVANCE(51); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(125); - END_STATE(); - case 126: - if (lookahead == '\n') - SKIP(125); - END_STATE(); - case 127: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(85); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(128); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(127); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(87); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(4); - END_STATE(); - case 128: - if (lookahead == '\n') - SKIP(127); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 129: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '=') - ADVANCE(89); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(130); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(129); + ADVANCE(103); if (lookahead != 0) - ADVANCE(4); + ADVANCE(99); END_STATE(); - case 130: + case 98: + ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - SKIP(129); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 131: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(59); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(61); + ADVANCE(99); if (lookahead == '\\') - ADVANCE(132); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '}') - ADVANCE(61); + ADVANCE(101); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') + ADVANCE(98); + END_STATE(); + case 99: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\\') + ADVANCE(100); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') + ADVANCE(99); + END_STATE(); + case 100: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(99); + if (lookahead == '\\') + ADVANCE(100); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(99); + if (lookahead != 0) + ADVANCE(99); + END_STATE(); + case 101: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(99); + if (lookahead == '\\') + ADVANCE(101); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(98); + if (lookahead != 0) + ADVANCE(98); + END_STATE(); + case 102: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(103); + if (lookahead == '\\') + ADVANCE(100); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(131); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(4); + ADVANCE(103); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(99); + if (lookahead != 0) + ADVANCE(99); END_STATE(); - case 132: - if (lookahead == '\n') - SKIP(131); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 133: - if (lookahead == '\n') - ADVANCE(84); + case 103: + ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(85); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(28); + ADVANCE(98); if (lookahead == '\\') - ADVANCE(134); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '|') - ADVANCE(52); + ADVANCE(102); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(133); + ADVANCE(103); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 134: - if (lookahead == '\n') - SKIP(133); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 135: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(138); - if (lookahead == '-') - ADVANCE(139); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '=') - ADVANCE(142); - if (lookahead == '>') - ADVANCE(145); - if (lookahead == '\\') - SKIP(146); - if (lookahead == ']') - ADVANCE(48); - if (lookahead == '|') - ADVANCE(147); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(135); - END_STATE(); - case 136: - if (lookahead == '=') - ADVANCE(137); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 138: - if (lookahead == '&') - ADVANCE(12); - END_STATE(); - case 139: - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(140); - END_STATE(); - case 140: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(140); - END_STATE(); - case 141: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 142: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') - ADVANCE(143); - if (lookahead == '~') - ADVANCE(144); - END_STATE(); - case 143: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 144: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - END_STATE(); - case 145: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 146: - if (lookahead == '\n') - SKIP(135); - END_STATE(); - case 147: - if (lookahead == '|') - ADVANCE(54); - END_STATE(); - case 148: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(138); - if (lookahead == '-') - ADVANCE(139); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '=') - ADVANCE(142); - if (lookahead == '>') - ADVANCE(145); - if (lookahead == '\\') - SKIP(149); - if (lookahead == ']') - ADVANCE(150); - if (lookahead == '|') - ADVANCE(147); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(148); - END_STATE(); - case 149: - if (lookahead == '\n') - SKIP(148); - END_STATE(); - case 150: - if (lookahead == ']') - ADVANCE(151); - END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); - END_STATE(); - case 152: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(6); - if (lookahead == '$') + lookahead != '`') ADVANCE(99); + END_STATE(); + case 104: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '$') + ADVANCE(105); + if (lookahead == '\'') + ADVANCE(16); if (lookahead == '*') - ADVANCE(100); + ADVANCE(106); if (lookahead == '-') - ADVANCE(101); + ADVANCE(107); if (lookahead == '0') - ADVANCE(153); + ADVANCE(108); if (lookahead == '?') - ADVANCE(103); + ADVANCE(109); if (lookahead == '@') - ADVANCE(104); + ADVANCE(110); if (lookahead == '\\') - ADVANCE(155); + SKIP(111); if (lookahead == '_') - ADVANCE(157); + ADVANCE(112); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(156); + SKIP(104); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(154); - if (lookahead != 0 && - (lookahead < '_' || lookahead > 'z')) - ADVANCE(93); + ADVANCE(79); END_STATE(); - case 153: + case 105: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 108: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(154); + ADVANCE(79); END_STATE(); - case 154: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(154); + case 109: + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 155: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(156); - if (lookahead == '\\') - ADVANCE(94); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(93); - if (lookahead != 0) - ADVANCE(93); + case 110: + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 156: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '#') - ADVANCE(6); - if (lookahead == '*') - ADVANCE(100); - if (lookahead == '-') - ADVANCE(101); - if (lookahead == '0') - ADVANCE(153); - if (lookahead == '?') - ADVANCE(103); - if (lookahead == '@') - ADVANCE(104); - if (lookahead == '\\') - ADVANCE(155); - if (lookahead == '_') - ADVANCE(157); + case 111: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(156); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(154); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '_' || lookahead > 'z')) - ADVANCE(93); + SKIP(104); END_STATE(); - case 157: + case 112: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(154); + ADVANCE(79); END_STATE(); - case 158: + case 113: + if (lookahead == '!') + ADVANCE(114); if (lookahead == '#') - ADVANCE(57); + ADVANCE(7); if (lookahead == '$') - ADVANCE(99); + ADVANCE(105); if (lookahead == '*') - ADVANCE(100); - if (lookahead == '-') - ADVANCE(101); - if (lookahead == '0') - ADVANCE(102); - if (lookahead == '?') - ADVANCE(103); - if (lookahead == '@') - ADVANCE(104); - if (lookahead == '\\') - SKIP(159); - if (lookahead == '_') ADVANCE(106); + if (lookahead == '-') + ADVANCE(107); + if (lookahead == '0') + ADVANCE(108); + if (lookahead == '?') + ADVANCE(109); + if (lookahead == '@') + ADVANCE(110); + if (lookahead == '\\') + SKIP(115); + if (lookahead == '_') + ADVANCE(112); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(158); + SKIP(113); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(72); + ADVANCE(79); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 115: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(113); + END_STATE(); + case 116: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(31); + if (lookahead == '=') + ADVANCE(95); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(117); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(116); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 117: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(116); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 118: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '\\') + SKIP(119); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(118); + END_STATE(); + case 119: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(118); + END_STATE(); + case 120: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(66); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(121); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(120); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 121: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(120); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 122: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(31); + if (lookahead == '=') + ADVANCE(95); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(123); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(122); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 123: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(122); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 124: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(125); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(124); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 125: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(124); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 126: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(127); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == '-') + ADVANCE(85); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(128); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(126); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 128: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(126); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 129: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(127); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '\\') + SKIP(130); + if (lookahead == 'i') + ADVANCE(131); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(129); + END_STATE(); + case 130: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(129); + END_STATE(); + case 131: + if (lookahead == 'n') + ADVANCE(132); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 133: + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == '\\') + SKIP(134); + if (lookahead == '{') + ADVANCE(58); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(133); + END_STATE(); + case 134: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(133); + END_STATE(); + case 135: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(91); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(136); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(135); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(93); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 136: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(135); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 137: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(31); + if (lookahead == '=') + ADVANCE(95); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(138); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(137); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 138: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(137); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 139: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(66); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(140); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(139); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 140: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(139); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 141: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(91); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '\\') + SKIP(142); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == 'e') + ADVANCE(143); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(141); + END_STATE(); + case 142: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(141); + END_STATE(); + case 143: + if (lookahead == 's') + ADVANCE(144); + END_STATE(); + case 144: + if (lookahead == 'a') + ADVANCE(145); + END_STATE(); + case 145: + if (lookahead == 'c') + ADVANCE(146); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_esac); + END_STATE(); + case 147: + if (lookahead == '!') + ADVANCE(148); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(150); + if (lookahead == '-') + ADVANCE(151); + if (lookahead == '<') + ADVANCE(153); + if (lookahead == '=') + ADVANCE(154); + if (lookahead == '>') + ADVANCE(157); + if (lookahead == '\\') + SKIP(158); + if (lookahead == ']') + ADVANCE(49); + if (lookahead == '|') + ADVANCE(159); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(147); + END_STATE(); + case 148: + if (lookahead == '=') + ADVANCE(149); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 150: + if (lookahead == '&') + ADVANCE(13); + END_STATE(); + case 151: + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(152); + END_STATE(); + case 152: + ACCEPT_TOKEN(sym_test_operator); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(152); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') + ADVANCE(155); + if (lookahead == '~') + ADVANCE(156); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 158: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(147); END_STATE(); case 159: - if (lookahead == '\n') - SKIP(158); + if (lookahead == '|') + ADVANCE(61); END_STATE(); case 160: - if (lookahead == '\"') - ADVANCE(5); + if (lookahead == '!') + ADVANCE(148); if (lookahead == '#') - ADVANCE(6); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '%') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(15); + ADVANCE(64); + if (lookahead == '&') + ADVANCE(150); if (lookahead == '-') - ADVANCE(22); - if (lookahead == '/') - ADVANCE(23); - if (lookahead == ':') - ADVANCE(25); + ADVANCE(151); if (lookahead == '<') - ADVANCE(80); + ADVANCE(153); if (lookahead == '=') - ADVANCE(161); + ADVANCE(154); if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); + ADVANCE(157); if (lookahead == '\\') - ADVANCE(162); + SKIP(161); if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(55); + ADVANCE(162); + if (lookahead == '|') + ADVANCE(159); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(160); + END_STATE(); + case 161: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(160); + END_STATE(); + case 162: + if (lookahead == ']') + ADVANCE(163); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + END_STATE(); + case 164: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '$') + ADVANCE(105); + if (lookahead == '*') + ADVANCE(106); + if (lookahead == '-') + ADVANCE(107); + if (lookahead == '0') + ADVANCE(165); + if (lookahead == '?') + ADVANCE(109); + if (lookahead == '@') + ADVANCE(110); + if (lookahead == '\\') + ADVANCE(167); + if (lookahead == '_') + ADVANCE(169); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(168); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(166); + if (lookahead != 0 && + (lookahead < '_' || lookahead > 'z')) + ADVANCE(99); + END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym_0); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(166); + END_STATE(); + case 166: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(166); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(168); + if (lookahead == '\\') + ADVANCE(100); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(168); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(99); + if (lookahead != 0) + ADVANCE(99); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '*') + ADVANCE(106); + if (lookahead == '-') + ADVANCE(107); + if (lookahead == '0') + ADVANCE(165); + if (lookahead == '?') + ADVANCE(109); + if (lookahead == '@') + ADVANCE(110); + if (lookahead == '\\') + ADVANCE(167); + if (lookahead == '_') + ADVANCE(169); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(168); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(166); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '_' || lookahead > 'z')) + ADVANCE(99); + END_STATE(); + case 169: + ACCEPT_TOKEN(anon_sym__); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(166); + END_STATE(); + case 170: + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(105); + if (lookahead == '*') + ADVANCE(106); + if (lookahead == '-') + ADVANCE(107); + if (lookahead == '0') + ADVANCE(108); + if (lookahead == '?') + ADVANCE(109); + if (lookahead == '@') + ADVANCE(110); + if (lookahead == '\\') + SKIP(171); + if (lookahead == '_') + ADVANCE(112); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(170); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(79); + END_STATE(); + case 171: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(170); + END_STATE(); + case 172: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '%') + ADVANCE(11); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '-') + ADVANCE(23); + if (lookahead == '/') + ADVANCE(24); + if (lookahead == ':') + ADVANCE(26); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '=') + ADVANCE(173); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(62); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(172); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 161: + case 173: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '\\') - ADVANCE(3); + ADVANCE(4); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3153,375 +3288,203 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 162: - if (lookahead == '\n') - SKIP(160); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); + case 174: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(172); + if (lookahead != 0) + ADVANCE(5); END_STATE(); - case 163: + case 175: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') - ADVANCE(2); + ADVANCE(3); if (lookahead == '\"') - ADVANCE(5); + ADVANCE(6); if (lookahead == '#') - ADVANCE(57); + ADVANCE(64); if (lookahead == '$') - ADVANCE(7); + ADVANCE(8); if (lookahead == '&') - ADVANCE(58); + ADVANCE(65); if (lookahead == '\'') - ADVANCE(15); + ADVANCE(16); if (lookahead == '(') - ADVANCE(17); + ADVANCE(18); if (lookahead == ';') - ADVANCE(164); + ADVANCE(176); if (lookahead == '<') - ADVANCE(59); + ADVANCE(66); if (lookahead == '>') - ADVANCE(39); + ADVANCE(40); if (lookahead == '[') - ADVANCE(45); + ADVANCE(46); if (lookahead == '\\') - ADVANCE(165); + ADVANCE(177); if (lookahead == ']') - ADVANCE(61); + ADVANCE(68); if (lookahead == '`') - ADVANCE(50); + ADVANCE(51); if (lookahead == '{') - ADVANCE(61); + ADVANCE(68); if (lookahead == '}') - ADVANCE(61); + ADVANCE(68); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(163); + SKIP(175); if ((lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 164: + case 176: if (lookahead == ';') - ADVANCE(29); + ADVANCE(30); END_STATE(); - case 165: - if (lookahead == '\n') - SKIP(163); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 166: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(167); - if (lookahead == '\\') - SKIP(168); + case 177: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(166); + SKIP(175); + if (lookahead != 0) + ADVANCE(5); END_STATE(); - case 167: + case 178: + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(179); + if (lookahead == '\\') + SKIP(180); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(178); + END_STATE(); + case 179: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '{') - ADVANCE(9); + ADVANCE(10); END_STATE(); - case 168: - if (lookahead == '\n') - SKIP(166); - END_STATE(); - case 169: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(170); - if (lookahead == '$') - ADVANCE(172); - if (lookahead == '\'') - ADVANCE(177); - if (lookahead == '<') - ADVANCE(180); - if (lookahead == '>') - ADVANCE(182); - if (lookahead == '[') - ADVANCE(184); - if (lookahead == '\\') - ADVANCE(185); - if (lookahead == ']') - ADVANCE(184); - if (lookahead == '`') - ADVANCE(188); - if (lookahead == '{') - ADVANCE(184); - if (lookahead == '}') - ADVANCE(184); + case 180: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(169); + SKIP(178); + END_STATE(); + case 181: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(182); + if (lookahead == '$') + ADVANCE(184); + if (lookahead == '\'') + ADVANCE(189); + if (lookahead == '<') + ADVANCE(192); + if (lookahead == '>') + ADVANCE(194); + if (lookahead == '[') + ADVANCE(196); + if (lookahead == '\\') + ADVANCE(197); + if (lookahead == ']') + ADVANCE(196); + if (lookahead == '`') + ADVANCE(203); + if (lookahead == '{') + ADVANCE(196); + if (lookahead == '}') + ADVANCE(196); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(181); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(175); - if (lookahead != 0) ADVANCE(187); - END_STATE(); - case 170: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(171); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(170); - END_STATE(); - case 171: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(171); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(170); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(170); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') - ADVANCE(173); - if (lookahead == '\\') - ADVANCE(174); - if (lookahead == '{') - ADVANCE(176); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(175); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '\\') - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(175); - END_STATE(); - case 174: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(174); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(175); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(175); - END_STATE(); - case 175: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(175); - END_STATE(); - case 176: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); - if (lookahead == '\\') - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(175); - END_STATE(); - case 177: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\'') - ADVANCE(178); - if (lookahead == '\\') - ADVANCE(179); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(15); if (lookahead != 0) - ADVANCE(177); - END_STATE(); - case 178: - ACCEPT_TOKEN(sym_raw_string); - if (lookahead == '\\') - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(175); - END_STATE(); - case 179: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\n') - ADVANCE(15); - if (lookahead == '\'') - ADVANCE(178); - if (lookahead == '\\') - ADVANCE(179); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(177); - if (lookahead != 0) - ADVANCE(177); - END_STATE(); - case 180: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') - ADVANCE(181); - if (lookahead == '\\') - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(175); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); - if (lookahead == '\\') - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(175); + ADVANCE(200); END_STATE(); case 182: ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') - ADVANCE(183); if (lookahead == '\\') - ADVANCE(174); + ADVANCE(183); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(175); + ADVANCE(182); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); + ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(174); + ADVANCE(183); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(182); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(175); + lookahead != '\n') + ADVANCE(182); END_STATE(); case 184: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '[') - ADVANCE(184); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') + ADVANCE(185); if (lookahead == '\\') - ADVANCE(174); - if (lookahead == ']') - ADVANCE(184); + ADVANCE(186); if (lookahead == '{') - ADVANCE(184); - if (lookahead == '}') - ADVANCE(184); + ADVANCE(188); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(175); + ADVANCE(187); END_STATE(); case 185: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + if (lookahead == '\\') + ADVANCE(186); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(187); + END_STATE(); + case 186: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') ADVANCE(186); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(175); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(187); - END_STATE(); - case 186: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(185); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(175); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(175); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') ADVANCE(187); END_STATE(); case 187: - ACCEPT_TOKEN(sym_word); + ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(185); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(175); + ADVANCE(186); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3530,1049 +3493,1432 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(187); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); if (lookahead == '\\') - ADVANCE(174); + ADVANCE(186); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(175); + ADVANCE(187); END_STATE(); case 189: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\'') ADVANCE(190); - if (lookahead == '>') - ADVANCE(191); if (lookahead == '\\') - SKIP(192); - if (lookahead == '|') - ADVANCE(52); + ADVANCE(191); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(189); + ADVANCE(16); + if (lookahead != 0) + ADVANCE(189); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(31); - if (lookahead == '<') - ADVANCE(33); + ACCEPT_TOKEN(sym_raw_string); + if (lookahead == '\\') + ADVANCE(186); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(187); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') - ADVANCE(40); - if (lookahead == '>') - ADVANCE(42); + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\n') + ADVANCE(16); + if (lookahead == '\'') + ADVANCE(190); + if (lookahead == '\\') + ADVANCE(191); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(189); + if (lookahead != 0) + ADVANCE(189); END_STATE(); case 192: - if (lookahead == '\n') - SKIP(189); + ACCEPT_TOKEN(sym_regex); + if (lookahead == '(') + ADVANCE(193); + if (lookahead == '\\') + ADVANCE(186); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(187); END_STATE(); case 193: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); + ACCEPT_TOKEN(anon_sym_LT_LPAREN); if (lookahead == '\\') - ADVANCE(194); - if (lookahead == ']') - ADVANCE(48); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(193); + ADVANCE(186); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(187); END_STATE(); case 194: - if (lookahead == '\n') - SKIP(193); + ACCEPT_TOKEN(sym_regex); + if (lookahead == '(') + ADVANCE(195); + if (lookahead == '\\') + ADVANCE(186); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(4); + ADVANCE(187); END_STATE(); case 195: - 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); + ACCEPT_TOKEN(anon_sym_GT_LPAREN); if (lookahead == '\\') - ADVANCE(196); - 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(195); + ADVANCE(186); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(187); END_STATE(); case 196: - if (lookahead == '\n') - SKIP(195); + ACCEPT_TOKEN(sym_regex); + if (lookahead == '[') + ADVANCE(196); + if (lookahead == '\\') + ADVANCE(186); + if (lookahead == ']') + ADVANCE(196); + if (lookahead == '{') + ADVANCE(196); + if (lookahead == '}') + ADVANCE(196); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(4); + ADVANCE(187); END_STATE(); case 197: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(85); - if (lookahead == '-') - ADVANCE(139); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '=') - ADVANCE(142); - if (lookahead == '>') - ADVANCE(145); + ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - SKIP(198); - if (lookahead == '|') - ADVANCE(147); + ADVANCE(198); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(197); + ADVANCE(201); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(200); END_STATE(); case 198: - if (lookahead == '\n') - SKIP(197); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(199); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(187); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(187); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(200); END_STATE(); case 199: - if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(58); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(59); - if (lookahead == '>') - ADVANCE(39); - if (lookahead == '[') - ADVANCE(45); + ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(200); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(55); + ADVANCE(198); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(199); + ADVANCE(187); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + lookahead != '\t' && + lookahead != '\n') + ADVANCE(200); END_STATE(); case 200: - if (lookahead == '\n') - SKIP(199); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(199); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(187); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(4); + ADVANCE(200); END_STATE(); case 201: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(202); - if (lookahead == '>') - ADVANCE(191); - if (lookahead == '\\') - SKIP(203); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(201); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(31); - END_STATE(); - case 203: - if (lookahead == '\n') - SKIP(201); - END_STATE(); - case 204: - if (lookahead == '!') - ADVANCE(2); + ACCEPT_TOKEN(sym_regex); if (lookahead == '\"') - ADVANCE(5); + ADVANCE(202); if (lookahead == '#') - ADVANCE(57); + ADVANCE(182); if (lookahead == '$') - ADVANCE(7); - if (lookahead == '&') - ADVANCE(58); + ADVANCE(184); if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == ')') - ADVANCE(18); + ADVANCE(189); if (lookahead == '<') - ADVANCE(59); + ADVANCE(192); if (lookahead == '>') - ADVANCE(39); + ADVANCE(194); if (lookahead == '[') - ADVANCE(45); + ADVANCE(196); if (lookahead == '\\') - ADVANCE(205); + ADVANCE(197); if (lookahead == ']') - ADVANCE(61); + ADVANCE(196); if (lookahead == '`') - ADVANCE(50); + ADVANCE(203); if (lookahead == '{') - ADVANCE(61); + ADVANCE(196); if (lookahead == '}') - ADVANCE(61); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(204); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 205: - if (lookahead == '\n') - SKIP(204); + ADVANCE(196); + if (('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '|') + ADVANCE(187); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(4); + ADVANCE(200); END_STATE(); - case 206: + case 202: + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '\\') + ADVANCE(186); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(187); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_BQUOTE); + if (lookahead == '\\') + ADVANCE(186); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(187); + END_STATE(); + case 204: if (lookahead == '\n') - ADVANCE(84); + ADVANCE(2); if (lookahead == '#') - ADVANCE(57); + ADVANCE(64); if (lookahead == '&') - ADVANCE(11); - if (lookahead == ')') - ADVANCE(18); + ADVANCE(12); if (lookahead == ';') - ADVANCE(28); + ADVANCE(29); if (lookahead == '<') - ADVANCE(190); + ADVANCE(205); if (lookahead == '>') - ADVANCE(191); + ADVANCE(206); if (lookahead == '\\') SKIP(207); if (lookahead == '|') - ADVANCE(52); + ADVANCE(59); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(206); + SKIP(204); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(32); + if (lookahead == '<') + ADVANCE(34); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') + ADVANCE(41); + if (lookahead == '>') + ADVANCE(43); END_STATE(); case 207: - if (lookahead == '\n') - SKIP(206); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(204); END_STATE(); case 208: - if (lookahead == '!') - ADVANCE(136); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(138); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '-') - ADVANCE(139); + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); if (lookahead == '<') - ADVANCE(141); - if (lookahead == '=') - ADVANCE(142); + ADVANCE(87); if (lookahead == '>') - ADVANCE(145); + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); if (lookahead == '\\') - SKIP(209); - if (lookahead == '|') - ADVANCE(147); + ADVANCE(209); + if (lookahead == ']') + ADVANCE(49); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(208); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 209: - if (lookahead == '\n') + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(208); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 210: - if (lookahead == '!') - ADVANCE(211); if (lookahead == '\"') - ADVANCE(5); + ADVANCE(6); if (lookahead == '#') - ADVANCE(170); + ADVANCE(64); if (lookahead == '$') - ADVANCE(172); + ADVANCE(8); if (lookahead == '\'') - ADVANCE(177); - if (lookahead == '(') - ADVANCE(212); - if (lookahead == '-') - ADVANCE(213); + ADVANCE(16); + if (lookahead == ')') + ADVANCE(19); if (lookahead == '<') - ADVANCE(180); + ADVANCE(87); if (lookahead == '>') - ADVANCE(182); + ADVANCE(88); if (lookahead == '[') - ADVANCE(184); + ADVANCE(68); if (lookahead == '\\') - ADVANCE(185); + ADVANCE(211); if (lookahead == ']') - ADVANCE(184); + ADVANCE(68); if (lookahead == '`') - ADVANCE(188); + ADVANCE(51); if (lookahead == '{') - ADVANCE(184); + ADVANCE(68); if (lookahead == '}') - ADVANCE(184); + ADVANCE(68); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(210); - if (('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '|') - ADVANCE(175); - if (lookahead != 0) - ADVANCE(187); - END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') - ADVANCE(185); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(175); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '\\') - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(175); - END_STATE(); - case 213: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(185); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(175); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(214); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 214: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(214); - END_STATE(); - case 215: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(138); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '-') - ADVANCE(139); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '=') - ADVANCE(142); - if (lookahead == '>') - ADVANCE(145); - if (lookahead == '\\') - SKIP(216); - if (lookahead == ']') - ADVANCE(150); - if (lookahead == '|') - ADVANCE(217); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(215); - END_STATE(); - case 216: - if (lookahead == '\n') - SKIP(215); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') - ADVANCE(54); - END_STATE(); - case 218: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(219); - if (lookahead == ']') - ADVANCE(61); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '{') - ADVANCE(61); - if (lookahead == '}') - ADVANCE(55); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(218); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); + END_STATE(); + case 211: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(210); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 212: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '!') + ADVANCE(148); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(91); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == '-') + ADVANCE(151); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(153); + if (lookahead == '=') + ADVANCE(154); + if (lookahead == '>') + ADVANCE(157); + if (lookahead == '\\') + SKIP(213); + if (lookahead == '|') + ADVANCE(159); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(212); + END_STATE(); + case 213: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(212); + END_STATE(); + case 214: + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(65); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(66); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(46); + if (lookahead == '\\') + ADVANCE(215); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(62); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(214); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 215: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(214); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 216: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(217); + if (lookahead == '>') + ADVANCE(206); + if (lookahead == '\\') + SKIP(218); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(216); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(32); + END_STATE(); + case 218: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(216); END_STATE(); case 219: + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(65); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == '<') + ADVANCE(66); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(46); + if (lookahead == '\\') + ADVANCE(220); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(219); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 220: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(219); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 221: if (lookahead == '\n') - SKIP(218); + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(205); + if (lookahead == '>') + ADVANCE(206); + if (lookahead == '\\') + SKIP(222); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(221); + END_STATE(); + case 222: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(221); + END_STATE(); + case 223: + if (lookahead == '!') + ADVANCE(148); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(150); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == '-') + ADVANCE(151); + if (lookahead == '<') + ADVANCE(153); + if (lookahead == '=') + ADVANCE(154); + if (lookahead == '>') + ADVANCE(157); + if (lookahead == '\\') + SKIP(224); + if (lookahead == '|') + ADVANCE(159); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(223); + END_STATE(); + case 224: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(223); + END_STATE(); + case 225: + if (lookahead == '!') + ADVANCE(226); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(182); + if (lookahead == '$') + ADVANCE(184); + if (lookahead == '\'') + ADVANCE(189); + if (lookahead == '(') + ADVANCE(227); + if (lookahead == '-') + ADVANCE(228); + if (lookahead == '<') + ADVANCE(192); + if (lookahead == '>') + ADVANCE(194); + if (lookahead == '[') + ADVANCE(196); + if (lookahead == '\\') + ADVANCE(230); + if (lookahead == ']') + ADVANCE(196); + if (lookahead == '`') + ADVANCE(203); + if (lookahead == '{') + ADVANCE(196); + if (lookahead == '}') + ADVANCE(196); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(225); + if (('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '|') + ADVANCE(187); + if (lookahead != 0) + ADVANCE(200); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '\\') + ADVANCE(199); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(187); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(4); + ADVANCE(200); END_STATE(); - case 220: - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(6); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '%') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '-') - ADVANCE(22); - if (lookahead == ':') - ADVANCE(25); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '=') - ADVANCE(161); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); + case 227: + ACCEPT_TOKEN(anon_sym_LPAREN); if (lookahead == '\\') - ADVANCE(221); + ADVANCE(186); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(187); + END_STATE(); + case 228: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(199); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(187); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(229); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(200); + END_STATE(); + case 229: + ACCEPT_TOKEN(sym_test_operator); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(229); + END_STATE(); + case 230: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(198); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(231); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(200); + END_STATE(); + case 231: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '!') + ADVANCE(226); + if (lookahead == '\"') + ADVANCE(202); + if (lookahead == '#') + ADVANCE(182); + if (lookahead == '$') + ADVANCE(184); + if (lookahead == '\'') + ADVANCE(189); + if (lookahead == '(') + ADVANCE(227); + if (lookahead == '-') + ADVANCE(228); + if (lookahead == '<') + ADVANCE(192); + if (lookahead == '>') + ADVANCE(194); + if (lookahead == '[') + ADVANCE(196); + if (lookahead == '\\') + ADVANCE(230); if (lookahead == ']') - ADVANCE(61); + ADVANCE(196); if (lookahead == '`') - ADVANCE(50); + ADVANCE(203); if (lookahead == '{') - ADVANCE(61); + ADVANCE(196); if (lookahead == '}') - ADVANCE(55); + ADVANCE(196); + if (('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '|') + ADVANCE(187); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + (lookahead < ' ' || lookahead > '$')) + ADVANCE(200); + END_STATE(); + case 232: + if (lookahead == '!') + ADVANCE(148); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(150); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == '-') + ADVANCE(151); + if (lookahead == '<') + ADVANCE(153); + if (lookahead == '=') + ADVANCE(154); + if (lookahead == '>') + ADVANCE(157); + if (lookahead == '\\') + SKIP(233); + if (lookahead == ']') + ADVANCE(162); + if (lookahead == '|') + ADVANCE(234); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(220); + SKIP(232); + END_STATE(); + case 233: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(232); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') + ADVANCE(61); + END_STATE(); + case 235: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(236); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(62); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(235); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 236: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(235); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 237: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(7); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '%') + ADVANCE(11); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '-') + ADVANCE(23); + if (lookahead == ':') + ADVANCE(26); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '=') + ADVANCE(173); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(238); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(62); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(237); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 221: - if (lookahead == '\n') - SKIP(220); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 222: - if (lookahead == '#') - ADVANCE(223); - if (lookahead == '\\') - ADVANCE(225); + case 238: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(222); + SKIP(237); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 239: + if (lookahead == '#') + ADVANCE(240); + if (lookahead == '\\') + ADVANCE(242); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(239); if (lookahead != 0 && lookahead != '\"' && lookahead != '#' && lookahead != '}') - ADVANCE(226); - END_STATE(); - case 223: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(224); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '}') - ADVANCE(223); - END_STATE(); - case 224: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(224); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '}') - ADVANCE(223); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(223); - END_STATE(); - case 225: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(225); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '}') - ADVANCE(226); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(226); - END_STATE(); - case 226: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(225); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '}') - ADVANCE(226); - END_STATE(); - case 227: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(190); - if (lookahead == '>') - ADVANCE(191); - if (lookahead == '\\') - SKIP(228); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(227); - END_STATE(); - case 228: - if (lookahead == '\n') - SKIP(227); - END_STATE(); - case 229: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(190); - if (lookahead == '>') - ADVANCE(191); - if (lookahead == '\\') - ADVANCE(230); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(229); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - (lookahead < '[' || lookahead > ']') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 230: - if (lookahead == '\n') - SKIP(229); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 231: - if (lookahead == '!') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(5); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(7); - if (lookahead == '\'') - ADVANCE(15); - if (lookahead == '(') - ADVANCE(17); - if (lookahead == ')') - ADVANCE(232); - if (lookahead == '-') - ADVANCE(78); - if (lookahead == '<') - ADVANCE(80); - if (lookahead == '>') - ADVANCE(81); - if (lookahead == '[') - ADVANCE(61); - if (lookahead == '\\') - ADVANCE(234); - 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(231); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 232: - if (lookahead == ')') - ADVANCE(233); - END_STATE(); - case 233: - ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); - END_STATE(); - case 234: - if (lookahead == '\n') - SKIP(231); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 235: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '!') - ADVANCE(236); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(85); - if (lookahead == '-') - ADVANCE(78); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '=') - ADVANCE(36); - if (lookahead == '>') - ADVANCE(145); - if (lookahead == '\\') - ADVANCE(238); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(235); - if (lookahead != 0 && - (lookahead < ' ' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 236: - ACCEPT_TOKEN(sym_word); - if (lookahead == '=') - ADVANCE(237); - if (lookahead == '\\') - ADVANCE(3); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - (lookahead < ';' || lookahead > '>') && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 237: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') - ADVANCE(3); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); - END_STATE(); - case 238: - if (lookahead == '\n') - SKIP(235); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 239: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(202); - if (lookahead == '>') - ADVANCE(191); - if (lookahead == '\\') - ADVANCE(240); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(239); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - (lookahead < '[' || lookahead > ']') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(244); END_STATE(); case 240: - if (lookahead == '\n') - SKIP(239); + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(241); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); + lookahead != ' ' && + lookahead != '}') + ADVANCE(240); END_STATE(); case 241: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(202); - if (lookahead == '>') - ADVANCE(191); + ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - SKIP(242); - if (lookahead == '|') - ADVANCE(52); + ADVANCE(241); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') - SKIP(241); + lookahead == ' ' || + lookahead == '}') + ADVANCE(240); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(240); END_STATE(); case 242: - if (lookahead == '\n') - SKIP(241); + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(243); + if (lookahead == '}') + ADVANCE(244); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(245); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(244); END_STATE(); case 243: - if (lookahead == '!') - ADVANCE(136); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(138); - if (lookahead == ')') - ADVANCE(18); - if (lookahead == '-') - ADVANCE(139); - if (lookahead == '<') - ADVANCE(141); - if (lookahead == '=') - ADVANCE(142); - if (lookahead == '>') - ADVANCE(145); + ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - SKIP(244); - if (lookahead == ']') - ADVANCE(150); - if (lookahead == '|') - ADVANCE(147); + ADVANCE(243); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') - SKIP(243); + lookahead == ' ' || + lookahead == '}') + ADVANCE(244); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(244); END_STATE(); case 244: - if (lookahead == '\n') - SKIP(243); + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(243); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '}') + ADVANCE(244); END_STATE(); case 245: - if (lookahead == '\n') - ADVANCE(84); + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\"') + ADVANCE(244); if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(202); - if (lookahead == '>') - ADVANCE(191); + ADVANCE(240); if (lookahead == '\\') - SKIP(246); - if (lookahead == '`') - ADVANCE(50); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(245); + ADVANCE(242); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '}') + ADVANCE(244); END_STATE(); case 246: if (lookahead == '\n') - SKIP(245); + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(205); + if (lookahead == '>') + ADVANCE(206); + if (lookahead == '\\') + SKIP(247); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(246); END_STATE(); case 247: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '\\') - ADVANCE(248); - if (lookahead == '{') - ADVANCE(51); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(247); + SKIP(246); + END_STATE(); + case 248: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(205); + if (lookahead == '>') + ADVANCE(206); + if (lookahead == '\\') + SKIP(249); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == 'e') + ADVANCE(143); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(248); + END_STATE(); + case 249: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(248); + END_STATE(); + case 250: + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == ')') + ADVANCE(251); + if (lookahead == '-') + ADVANCE(85); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(253); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(250); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 251: + if (lookahead == ')') + ADVANCE(252); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + END_STATE(); + case 253: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(250); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 254: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '!') + ADVANCE(148); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(91); + if (lookahead == '-') + ADVANCE(151); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(153); + if (lookahead == '=') + ADVANCE(154); + if (lookahead == '>') + ADVANCE(157); + if (lookahead == '\\') + SKIP(255); + if (lookahead == 'e') + ADVANCE(143); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(254); + END_STATE(); + case 255: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(254); + END_STATE(); + case 256: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(127); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(257); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(256); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 257: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(256); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 258: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(259); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == 'e') + ADVANCE(52); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(258); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 259: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(258); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 260: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(217); + if (lookahead == '>') + ADVANCE(206); + if (lookahead == '\\') + SKIP(261); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == 'e') + ADVANCE(143); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(260); + END_STATE(); + case 261: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(260); + END_STATE(); + case 262: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(217); + if (lookahead == '>') + ADVANCE(206); + if (lookahead == '\\') + SKIP(263); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(262); + END_STATE(); + case 263: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(262); + END_STATE(); + case 264: + if (lookahead == '!') + ADVANCE(148); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(150); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == '-') + ADVANCE(151); + if (lookahead == '<') + ADVANCE(153); + if (lookahead == '=') + ADVANCE(154); + if (lookahead == '>') + ADVANCE(157); + if (lookahead == '\\') + SKIP(265); + if (lookahead == ']') + ADVANCE(162); + if (lookahead == '|') + ADVANCE(159); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(264); + END_STATE(); + case 265: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(264); + END_STATE(); + case 266: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(217); + if (lookahead == '>') + ADVANCE(206); + if (lookahead == '\\') + SKIP(267); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(266); + END_STATE(); + case 267: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(266); + END_STATE(); + case 268: + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '\\') + ADVANCE(269); + if (lookahead == '{') + ADVANCE(58); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(268); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -4582,148 +4928,561 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + ADVANCE(5); END_STATE(); - case 248: - if (lookahead == '\n') - SKIP(247); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); + case 269: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(268); + if (lookahead != 0) + ADVANCE(5); END_STATE(); - case 249: + case 270: if (lookahead == '!') - ADVANCE(136); + ADVANCE(148); if (lookahead == '#') - ADVANCE(57); + ADVANCE(64); if (lookahead == '&') - ADVANCE(138); + ADVANCE(150); if (lookahead == ')') - ADVANCE(232); + ADVANCE(251); if (lookahead == '-') - ADVANCE(139); + ADVANCE(151); if (lookahead == '<') - ADVANCE(141); + ADVANCE(153); if (lookahead == '=') - ADVANCE(142); + ADVANCE(154); if (lookahead == '>') - ADVANCE(145); + ADVANCE(157); if (lookahead == '\\') - SKIP(250); + SKIP(271); if (lookahead == '|') - ADVANCE(147); + ADVANCE(159); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(249); + SKIP(270); END_STATE(); - case 250: - if (lookahead == '\n') - SKIP(249); + case 271: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(270); END_STATE(); - case 251: + case 272: if (lookahead == '#') - ADVANCE(57); + ADVANCE(64); if (lookahead == ')') - ADVANCE(18); + ADVANCE(19); if (lookahead == '\\') - SKIP(252); + SKIP(273); if (lookahead == '|') - ADVANCE(253); + ADVANCE(274); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(251); + SKIP(272); END_STATE(); - case 252: - if (lookahead == '\n') - SKIP(251); + case 273: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(272); END_STATE(); - case 253: + case 274: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 254: + case 275: if (lookahead == '\n') - ADVANCE(84); + ADVANCE(2); if (lookahead == '#') - ADVANCE(57); + ADVANCE(64); if (lookahead == '&') - ADVANCE(11); + ADVANCE(91); if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(190); - if (lookahead == '>') - ADVANCE(191); + ADVANCE(29); if (lookahead == '\\') - ADVANCE(255); + SKIP(276); + if (lookahead == 'e') + ADVANCE(143); if (lookahead == '|') - ADVANCE(52); + ADVANCE(59); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(254); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + SKIP(275); END_STATE(); - case 255: + case 276: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(275); + END_STATE(); + case 277: + if (lookahead == '!') + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(65); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(176); + if (lookahead == '<') + ADVANCE(66); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(46); + if (lookahead == '\\') + ADVANCE(278); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == 'e') + ADVANCE(52); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(277); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 278: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(277); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 279: if (lookahead == '\n') - SKIP(254); + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(91); + if (lookahead == ')') + ADVANCE(19); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '\\') + SKIP(280); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(279); + END_STATE(); + case 280: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(279); + END_STATE(); + case 281: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(91); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(87); + if (lookahead == '>') + ADVANCE(88); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(282); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == 'e') + ADVANCE(283); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(281); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(93); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 282: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(281); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 283: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 's') + ADVANCE(284); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(93); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') - ADVANCE(4); - END_STATE(); - case 256: - if (lookahead == '\n') - ADVANCE(84); - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '&') - ADVANCE(11); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(202); - if (lookahead == '>') - ADVANCE(191); - if (lookahead == '\\') - ADVANCE(257); - if (lookahead == '|') - ADVANCE(52); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(256); - if (lookahead != 0 && + lookahead != ' ' && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(4); + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); END_STATE(); - case 257: - if (lookahead == '\n') - SKIP(256); + case 284: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'a') + ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(93); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 285: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == 'c') + ADVANCE(286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(93); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 286: + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') + ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(93); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 287: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(31); + if (lookahead == '=') + ADVANCE(95); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(288); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == 'e') + ADVANCE(52); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(287); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 288: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(287); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 289: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(31); + if (lookahead == '=') + ADVANCE(95); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(290); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == 'e') + ADVANCE(52); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(289); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 290: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(289); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 291: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(66); + if (lookahead == '>') + ADVANCE(40); + if (lookahead == '[') + ADVANCE(68); + if (lookahead == '\\') + ADVANCE(292); + if (lookahead == ']') + ADVANCE(68); + if (lookahead == '`') + ADVANCE(51); + if (lookahead == 'e') + ADVANCE(52); + if (lookahead == '{') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '}') + ADVANCE(68); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(291); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 292: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(291); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 293: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(205); + if (lookahead == '>') + ADVANCE(206); + if (lookahead == '\\') + SKIP(294); + if (lookahead == 'e') + ADVANCE(143); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(293); + END_STATE(); + case 294: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(293); + END_STATE(); + case 295: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(64); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(217); + if (lookahead == '>') + ADVANCE(206); + if (lookahead == '\\') + SKIP(296); + if (lookahead == 'e') + ADVANCE(143); + if (lookahead == '|') + ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(295); + END_STATE(); + case 296: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(295); END_STATE(); default: return false; @@ -4741,19 +5500,19 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(15); if (lookahead == 'f') - ADVANCE(29); + ADVANCE(26); if (lookahead == 'i') - ADVANCE(40); + ADVANCE(37); if (lookahead == 'l') - ADVANCE(43); + ADVANCE(39); if (lookahead == 'r') - ADVANCE(48); + ADVANCE(44); if (lookahead == 't') - ADVANCE(56); + ADVANCE(52); if (lookahead == 'u') - ADVANCE(66); + ADVANCE(62); if (lookahead == 'w') - ADVANCE(74); + ADVANCE(70); END_STATE(); case 1: if (lookahead == 'a') @@ -4814,10 +5573,8 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { case 15: if (lookahead == 'l') ADVANCE(16); - if (lookahead == 's') - ADVANCE(21); if (lookahead == 'x') - ADVANCE(24); + ADVANCE(21); END_STATE(); case 16: if (lookahead == 'i') @@ -4840,98 +5597,97 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 21: - if (lookahead == 'a') + if (lookahead == 'p') ADVANCE(22); END_STATE(); case 22: - if (lookahead == 'c') + if (lookahead == 'o') ADVANCE(23); END_STATE(); case 23: - ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == 'r') + ADVANCE(24); END_STATE(); case 24: - if (lookahead == 'p') + if (lookahead == 't') ADVANCE(25); END_STATE(); case 25: - if (lookahead == 'o') - ADVANCE(26); - END_STATE(); - case 26: - if (lookahead == 'r') - ADVANCE(27); - END_STATE(); - case 27: - if (lookahead == 't') - ADVANCE(28); - END_STATE(); - case 28: ACCEPT_TOKEN(anon_sym_export); END_STATE(); - case 29: + case 26: if (lookahead == 'i') - ADVANCE(30); + ADVANCE(27); if (lookahead == 'o') - ADVANCE(31); + ADVANCE(28); if (lookahead == 'u') - ADVANCE(33); + ADVANCE(30); END_STATE(); - case 30: + case 27: ACCEPT_TOKEN(anon_sym_fi); END_STATE(); - case 31: + case 28: if (lookahead == 'r') + ADVANCE(29); + END_STATE(); + case 29: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 30: + if (lookahead == 'n') + ADVANCE(31); + END_STATE(); + case 31: + if (lookahead == 'c') ADVANCE(32); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 't') + ADVANCE(33); END_STATE(); case 33: - if (lookahead == 'n') + if (lookahead == 'i') ADVANCE(34); END_STATE(); case 34: - if (lookahead == 'c') + if (lookahead == 'o') ADVANCE(35); END_STATE(); case 35: - if (lookahead == 't') + if (lookahead == 'n') ADVANCE(36); END_STATE(); case 36: - if (lookahead == 'i') - ADVANCE(37); + ACCEPT_TOKEN(anon_sym_function); END_STATE(); case 37: - if (lookahead == 'o') + if (lookahead == 'f') ADVANCE(38); END_STATE(); case 38: - if (lookahead == 'n') - ADVANCE(39); - END_STATE(); - case 39: - ACCEPT_TOKEN(anon_sym_function); - END_STATE(); - case 40: - if (lookahead == 'f') - ADVANCE(41); - if (lookahead == 'n') - ADVANCE(42); - END_STATE(); - case 41: ACCEPT_TOKEN(anon_sym_if); END_STATE(); + case 39: + if (lookahead == 'o') + ADVANCE(40); + END_STATE(); + case 40: + if (lookahead == 'c') + ADVANCE(41); + END_STATE(); + case 41: + if (lookahead == 'a') + ADVANCE(42); + END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'l') + ADVANCE(43); END_STATE(); case 43: - if (lookahead == 'o') - ADVANCE(44); + ACCEPT_TOKEN(anon_sym_local); END_STATE(); case 44: - if (lookahead == 'c') + if (lookahead == 'e') ADVANCE(45); END_STATE(); case 45: @@ -4939,132 +5695,117 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ADVANCE(46); END_STATE(); case 46: - if (lookahead == 'l') + if (lookahead == 'd') ADVANCE(47); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_local); + if (lookahead == 'o') + ADVANCE(48); END_STATE(); case 48: - if (lookahead == 'e') + if (lookahead == 'n') ADVANCE(49); END_STATE(); case 49: - if (lookahead == 'a') + if (lookahead == 'l') ADVANCE(50); END_STATE(); case 50: - if (lookahead == 'd') + if (lookahead == 'y') ADVANCE(51); END_STATE(); case 51: - if (lookahead == 'o') - ADVANCE(52); + ACCEPT_TOKEN(anon_sym_readonly); END_STATE(); case 52: - if (lookahead == 'n') + if (lookahead == 'h') ADVANCE(53); + if (lookahead == 'y') + ADVANCE(56); END_STATE(); case 53: - if (lookahead == 'l') + if (lookahead == 'e') ADVANCE(54); END_STATE(); case 54: - if (lookahead == 'y') + if (lookahead == 'n') ADVANCE(55); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_readonly); + ACCEPT_TOKEN(anon_sym_then); END_STATE(); case 56: - if (lookahead == 'h') + if (lookahead == 'p') ADVANCE(57); - if (lookahead == 'y') - ADVANCE(60); END_STATE(); case 57: if (lookahead == 'e') ADVANCE(58); END_STATE(); case 58: - if (lookahead == 'n') + if (lookahead == 's') ADVANCE(59); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_then); + if (lookahead == 'e') + ADVANCE(60); END_STATE(); case 60: - if (lookahead == 'p') + if (lookahead == 't') ADVANCE(61); END_STATE(); case 61: - if (lookahead == 'e') - ADVANCE(62); + ACCEPT_TOKEN(anon_sym_typeset); END_STATE(); case 62: - if (lookahead == 's') + if (lookahead == 'n') ADVANCE(63); END_STATE(); case 63: - if (lookahead == 'e') + if (lookahead == 's') ADVANCE(64); END_STATE(); case 64: - if (lookahead == 't') + if (lookahead == 'e') ADVANCE(65); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_typeset); + if (lookahead == 't') + ADVANCE(66); END_STATE(); case 66: - if (lookahead == 'n') + ACCEPT_TOKEN(anon_sym_unset); + if (lookahead == 'e') ADVANCE(67); END_STATE(); case 67: - if (lookahead == 's') + if (lookahead == 'n') ADVANCE(68); END_STATE(); case 68: - if (lookahead == 'e') + if (lookahead == 'v') ADVANCE(69); END_STATE(); case 69: - if (lookahead == 't') - ADVANCE(70); + ACCEPT_TOKEN(anon_sym_unsetenv); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == 'e') + if (lookahead == 'h') ADVANCE(71); END_STATE(); case 71: - if (lookahead == 'n') + if (lookahead == 'i') ADVANCE(72); END_STATE(); case 72: - if (lookahead == 'v') + if (lookahead == 'l') ADVANCE(73); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_unsetenv); + if (lookahead == 'e') + ADVANCE(74); END_STATE(); case 74: - if (lookahead == 'h') - ADVANCE(75); - END_STATE(); - case 75: - if (lookahead == 'i') - ADVANCE(76); - END_STATE(); - case 76: - if (lookahead == 'l') - ADVANCE(77); - END_STATE(); - case 77: - if (lookahead == 'e') - ADVANCE(78); - END_STATE(); - case 78: ACCEPT_TOKEN(anon_sym_while); END_STATE(); default: @@ -5074,2730 +5815,3185 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 56, .external_lex_state = 2}, - [2] = {.lex_state = 56}, - [3] = {.lex_state = 62}, - [4] = {.lex_state = 68}, - [5] = {.lex_state = 56, .external_lex_state = 2}, - [6] = {.lex_state = 56, .external_lex_state = 2}, - [7] = {.lex_state = 73}, - [8] = {.lex_state = 73}, - [9] = {.lex_state = 56, .external_lex_state = 2}, - [10] = {.lex_state = 75, .external_lex_state = 2}, - [11] = {.lex_state = 77}, - [12] = {.lex_state = 77}, - [13] = {.lex_state = 83, .external_lex_state = 3}, - [14] = {.lex_state = 83, .external_lex_state = 4}, - [15] = {.lex_state = 73}, - [16] = {.lex_state = 88, .external_lex_state = 5}, - [17] = {.lex_state = 91}, - [18] = {.lex_state = 98}, - [19] = {.lex_state = 88, .external_lex_state = 5}, - [20] = {.lex_state = 107, .external_lex_state = 6}, - [21] = {.lex_state = 56, .external_lex_state = 2}, - [22] = {.lex_state = 56, .external_lex_state = 2}, - [23] = {.lex_state = 56, .external_lex_state = 2}, - [24] = {.lex_state = 110, .external_lex_state = 5}, - [25] = {.lex_state = 112}, - [26] = {.lex_state = 83, .external_lex_state = 4}, - [27] = {.lex_state = 88, .external_lex_state = 7}, - [28] = {.lex_state = 114, .external_lex_state = 8}, - [29] = {.lex_state = 62}, - [30] = {.lex_state = 73, .external_lex_state = 2}, - [31] = {.lex_state = 116, .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 = 73}, - [36] = {.lex_state = 118, .external_lex_state = 9}, - [37] = {.lex_state = 120, .external_lex_state = 4}, - [38] = {.lex_state = 123, .external_lex_state = 4}, - [39] = {.lex_state = 73}, - [40] = {.lex_state = 83, .external_lex_state = 4}, - [41] = {.lex_state = 114, .external_lex_state = 8}, - [42] = {.lex_state = 73}, - [43] = {.lex_state = 123, .external_lex_state = 10}, - [44] = {.lex_state = 91}, - [45] = {.lex_state = 98}, - [46] = {.lex_state = 123, .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 = 56, .external_lex_state = 2}, - [51] = {.lex_state = 123, .external_lex_state = 4}, - [52] = {.lex_state = 125}, - [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 = 77}, - [59] = {.lex_state = 127, .external_lex_state = 3}, - [60] = {.lex_state = 127, .external_lex_state = 4}, - [61] = {.lex_state = 116, .external_lex_state = 5}, - [62] = {.lex_state = 116, .external_lex_state = 5}, - [63] = {.lex_state = 129, .external_lex_state = 5}, - [64] = {.lex_state = 127, .external_lex_state = 4}, - [65] = {.lex_state = 116, .external_lex_state = 7}, - [66] = {.lex_state = 131, .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 = 133, .external_lex_state = 4}, - [72] = {.lex_state = 62}, - [73] = {.lex_state = 77}, - [74] = {.lex_state = 77}, - [75] = {.lex_state = 135, .external_lex_state = 11}, - [76] = {.lex_state = 91}, - [77] = {.lex_state = 98}, - [78] = {.lex_state = 135, .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 = 56, .external_lex_state = 2}, - [83] = {.lex_state = 135, .external_lex_state = 12}, - [84] = {.lex_state = 77}, - [85] = {.lex_state = 77}, - [86] = {.lex_state = 148, .external_lex_state = 13}, - [87] = {.lex_state = 91}, - [88] = {.lex_state = 98}, - [89] = {.lex_state = 148, .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 = 56, .external_lex_state = 2}, - [94] = {.lex_state = 148}, - [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 = 56, .external_lex_state = 2}, - [104] = {.lex_state = 127, .external_lex_state = 3}, - [105] = {.lex_state = 62}, - [106] = {.lex_state = 83, .external_lex_state = 3}, - [107] = {.lex_state = 83, .external_lex_state = 10}, - [108] = {.lex_state = 91}, - [109] = {.lex_state = 98}, - [110] = {.lex_state = 83, .external_lex_state = 10}, - [111] = {.lex_state = 107, .external_lex_state = 6}, - [112] = {.lex_state = 56, .external_lex_state = 2}, - [113] = {.lex_state = 56, .external_lex_state = 2}, - [114] = {.lex_state = 56, .external_lex_state = 2}, - [115] = {.lex_state = 127, .external_lex_state = 4}, - [116] = {.lex_state = 83, .external_lex_state = 4}, - [117] = {.lex_state = 73, .external_lex_state = 15}, - [118] = {.lex_state = 91}, - [119] = {.lex_state = 98}, - [120] = {.lex_state = 73, .external_lex_state = 15}, - [121] = {.lex_state = 107, .external_lex_state = 6}, - [122] = {.lex_state = 56, .external_lex_state = 2}, - [123] = {.lex_state = 56, .external_lex_state = 2}, - [124] = {.lex_state = 56, .external_lex_state = 2}, - [125] = {.lex_state = 73, .external_lex_state = 2}, - [126] = {.lex_state = 73}, - [127] = {.lex_state = 88, .external_lex_state = 5}, - [128] = {.lex_state = 116, .external_lex_state = 5}, - [129] = {.lex_state = 152}, - [130] = {.lex_state = 91, .external_lex_state = 13}, - [131] = {.lex_state = 107, .external_lex_state = 6}, - [132] = {.lex_state = 56, .external_lex_state = 2}, - [133] = {.lex_state = 56, .external_lex_state = 2}, - [134] = {.lex_state = 91}, - [135] = {.lex_state = 116, .external_lex_state = 5}, - [136] = {.lex_state = 116, .external_lex_state = 5}, - [137] = {.lex_state = 116, .external_lex_state = 5}, - [138] = {.lex_state = 62}, - [139] = {.lex_state = 158, .external_lex_state = 6}, - [140] = {.lex_state = 160, .external_lex_state = 16}, - [141] = {.lex_state = 160, .external_lex_state = 16}, - [142] = {.lex_state = 160, .external_lex_state = 16}, - [143] = {.lex_state = 127, .external_lex_state = 4}, - [144] = {.lex_state = 131, .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 = 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 = 110, .external_lex_state = 5}, - [154] = {.lex_state = 83, .external_lex_state = 4}, - [155] = {.lex_state = 88, .external_lex_state = 7}, - [156] = {.lex_state = 114, .external_lex_state = 8}, - [157] = {.lex_state = 56, .external_lex_state = 2}, - [158] = {.lex_state = 73, .external_lex_state = 2}, - [159] = {.lex_state = 127, .external_lex_state = 4}, - [160] = {.lex_state = 131, .external_lex_state = 8}, - [161] = {.lex_state = 56, .external_lex_state = 2}, - [162] = {.lex_state = 77}, - [163] = {.lex_state = 56, .external_lex_state = 2}, - [164] = {.lex_state = 163, .external_lex_state = 2}, - [165] = {.lex_state = 56, .external_lex_state = 2}, - [166] = {.lex_state = 133, .external_lex_state = 4}, - [167] = {.lex_state = 166, .external_lex_state = 17}, - [168] = {.lex_state = 56}, - [169] = {.lex_state = 169}, - [170] = {.lex_state = 73}, - [171] = {.lex_state = 56, .external_lex_state = 18}, - [172] = {.lex_state = 73}, - [173] = {.lex_state = 88, .external_lex_state = 5}, - [174] = {.lex_state = 88, .external_lex_state = 5}, - [175] = {.lex_state = 133, .external_lex_state = 4}, - [176] = {.lex_state = 189, .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 = 193, .external_lex_state = 11}, - [185] = {.lex_state = 193, .external_lex_state = 11}, - [186] = {.lex_state = 193, .external_lex_state = 11}, - [187] = {.lex_state = 131, .external_lex_state = 8}, - [188] = {.lex_state = 195}, - [189] = {.lex_state = 114, .external_lex_state = 19}, - [190] = {.lex_state = 91}, - [191] = {.lex_state = 98}, - [192] = {.lex_state = 114, .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 = 120, .external_lex_state = 4}, - [198] = {.lex_state = 77}, - [199] = {.lex_state = 77}, - [200] = {.lex_state = 197, .external_lex_state = 10}, - [201] = {.lex_state = 91}, - [202] = {.lex_state = 98}, - [203] = {.lex_state = 197, .external_lex_state = 10}, - [204] = {.lex_state = 107, .external_lex_state = 6}, - [205] = {.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 = 197, .external_lex_state = 4}, - [209] = {.lex_state = 73}, - [210] = {.lex_state = 73}, - [211] = {.lex_state = 56, .external_lex_state = 2}, - [212] = {.lex_state = 189, .external_lex_state = 7}, - [213] = {.lex_state = 73}, - [214] = {.lex_state = 56, .external_lex_state = 2}, - [215] = {.lex_state = 73}, - [216] = {.lex_state = 120, .external_lex_state = 4}, - [217] = {.lex_state = 73}, - [218] = {.lex_state = 123, .external_lex_state = 10}, - [219] = {.lex_state = 123, .external_lex_state = 10}, - [220] = {.lex_state = 152}, - [221] = {.lex_state = 91}, - [222] = {.lex_state = 123, .external_lex_state = 10}, - [223] = {.lex_state = 123, .external_lex_state = 10}, - [224] = {.lex_state = 123, .external_lex_state = 10}, - [225] = {.lex_state = 120, .external_lex_state = 4}, - [226] = {.lex_state = 73}, - [227] = {.lex_state = 62}, - [228] = {.lex_state = 158, .external_lex_state = 6}, - [229] = {.lex_state = 160, .external_lex_state = 16}, - [230] = {.lex_state = 160, .external_lex_state = 16}, - [231] = {.lex_state = 160, .external_lex_state = 16}, - [232] = {.lex_state = 127, .external_lex_state = 4}, - [233] = {.lex_state = 131, .external_lex_state = 8}, - [234] = {.lex_state = 56, .external_lex_state = 2}, - [235] = {.lex_state = 83, .external_lex_state = 4}, - [236] = {.lex_state = 114, .external_lex_state = 8}, - [237] = {.lex_state = 56, .external_lex_state = 2}, - [238] = {.lex_state = 127, .external_lex_state = 4}, - [239] = {.lex_state = 131, .external_lex_state = 8}, - [240] = {.lex_state = 56, .external_lex_state = 2}, - [241] = {.lex_state = 77}, - [242] = {.lex_state = 199, .external_lex_state = 20}, - [243] = {.lex_state = 201, .external_lex_state = 21}, - [244] = {.lex_state = 118, .external_lex_state = 9}, - [245] = {.lex_state = 73}, - [246] = {.lex_state = 125}, - [247] = {.lex_state = 135, .external_lex_state = 12}, - [248] = {.lex_state = 148}, - [249] = {.lex_state = 62}, - [250] = {.lex_state = 127, .external_lex_state = 14}, - [251] = {.lex_state = 127, .external_lex_state = 14}, - [252] = {.lex_state = 62}, - [253] = {.lex_state = 127, .external_lex_state = 3}, - [254] = {.lex_state = 127, .external_lex_state = 10}, - [255] = {.lex_state = 127, .external_lex_state = 10}, - [256] = {.lex_state = 127, .external_lex_state = 4}, - [257] = {.lex_state = 116, .external_lex_state = 5}, - [258] = {.lex_state = 77}, - [259] = {.lex_state = 56, .external_lex_state = 2}, - [260] = {.lex_state = 133, .external_lex_state = 4}, - [261] = {.lex_state = 204, .external_lex_state = 2}, - [262] = {.lex_state = 56, .external_lex_state = 2}, - [263] = {.lex_state = 56}, - [264] = {.lex_state = 169}, - [265] = {.lex_state = 73}, - [266] = {.lex_state = 73}, - [267] = {.lex_state = 116, .external_lex_state = 5}, - [268] = {.lex_state = 116, .external_lex_state = 5}, - [269] = {.lex_state = 206, .external_lex_state = 7}, - [270] = {.lex_state = 116, .external_lex_state = 7}, - [271] = {.lex_state = 127, .external_lex_state = 4}, - [272] = {.lex_state = 131, .external_lex_state = 8}, - [273] = {.lex_state = 56, .external_lex_state = 2}, - [274] = {.lex_state = 116, .external_lex_state = 7}, - [275] = {.lex_state = 118, .external_lex_state = 9}, - [276] = {.lex_state = 77}, - [277] = {.lex_state = 208, .external_lex_state = 13}, - [278] = {.lex_state = 208, .external_lex_state = 13}, - [279] = {.lex_state = 208}, - [280] = {.lex_state = 135, .external_lex_state = 12}, - [281] = {.lex_state = 73}, - [282] = {.lex_state = 135, .external_lex_state = 11}, - [283] = {.lex_state = 135, .external_lex_state = 11}, - [284] = {.lex_state = 152}, - [285] = {.lex_state = 91}, - [286] = {.lex_state = 135, .external_lex_state = 11}, - [287] = {.lex_state = 135, .external_lex_state = 11}, - [288] = {.lex_state = 135, .external_lex_state = 11}, - [289] = {.lex_state = 62}, - [290] = {.lex_state = 158, .external_lex_state = 6}, - [291] = {.lex_state = 160, .external_lex_state = 16}, - [292] = {.lex_state = 160, .external_lex_state = 16}, - [293] = {.lex_state = 160, .external_lex_state = 16}, - [294] = {.lex_state = 127, .external_lex_state = 4}, - [295] = {.lex_state = 131, .external_lex_state = 8}, - [296] = {.lex_state = 56, .external_lex_state = 2}, - [297] = {.lex_state = 83, .external_lex_state = 4}, - [298] = {.lex_state = 114, .external_lex_state = 8}, - [299] = {.lex_state = 56, .external_lex_state = 2}, - [300] = {.lex_state = 127, .external_lex_state = 4}, - [301] = {.lex_state = 131, .external_lex_state = 8}, - [302] = {.lex_state = 56, .external_lex_state = 2}, - [303] = {.lex_state = 77}, - [304] = {.lex_state = 189, .external_lex_state = 21}, - [305] = {.lex_state = 210}, - [306] = {.lex_state = 208}, - [307] = {.lex_state = 148}, - [308] = {.lex_state = 73}, - [309] = {.lex_state = 148, .external_lex_state = 13}, - [310] = {.lex_state = 215, .external_lex_state = 13}, - [311] = {.lex_state = 152}, - [312] = {.lex_state = 91}, - [313] = {.lex_state = 215, .external_lex_state = 13}, - [314] = {.lex_state = 215, .external_lex_state = 13}, - [315] = {.lex_state = 215, .external_lex_state = 13}, - [316] = {.lex_state = 62}, - [317] = {.lex_state = 158, .external_lex_state = 6}, - [318] = {.lex_state = 160, .external_lex_state = 16}, - [319] = {.lex_state = 160, .external_lex_state = 16}, - [320] = {.lex_state = 160, .external_lex_state = 16}, - [321] = {.lex_state = 127, .external_lex_state = 4}, - [322] = {.lex_state = 131, .external_lex_state = 8}, - [323] = {.lex_state = 56, .external_lex_state = 2}, - [324] = {.lex_state = 83, .external_lex_state = 4}, - [325] = {.lex_state = 114, .external_lex_state = 8}, - [326] = {.lex_state = 56, .external_lex_state = 2}, - [327] = {.lex_state = 127, .external_lex_state = 4}, - [328] = {.lex_state = 131, .external_lex_state = 8}, - [329] = {.lex_state = 56, .external_lex_state = 2}, - [330] = {.lex_state = 77}, - [331] = {.lex_state = 210}, - [332] = {.lex_state = 118, .external_lex_state = 9}, - [333] = {.lex_state = 73}, - [334] = {.lex_state = 83, .external_lex_state = 14}, - [335] = {.lex_state = 127, .external_lex_state = 14}, - [336] = {.lex_state = 152}, - [337] = {.lex_state = 91}, - [338] = {.lex_state = 127, .external_lex_state = 14}, - [339] = {.lex_state = 127, .external_lex_state = 14}, - [340] = {.lex_state = 127, .external_lex_state = 14}, - [341] = {.lex_state = 62}, - [342] = {.lex_state = 158, .external_lex_state = 6}, - [343] = {.lex_state = 160, .external_lex_state = 16}, - [344] = {.lex_state = 160, .external_lex_state = 16}, - [345] = {.lex_state = 160, .external_lex_state = 16}, - [346] = {.lex_state = 127, .external_lex_state = 4}, - [347] = {.lex_state = 131, .external_lex_state = 8}, - [348] = {.lex_state = 56, .external_lex_state = 2}, - [349] = {.lex_state = 83, .external_lex_state = 4}, - [350] = {.lex_state = 114, .external_lex_state = 8}, - [351] = {.lex_state = 56, .external_lex_state = 2}, - [352] = {.lex_state = 127, .external_lex_state = 4}, - [353] = {.lex_state = 131, .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 = 127, .external_lex_state = 10}, - [359] = {.lex_state = 152}, - [360] = {.lex_state = 91}, - [361] = {.lex_state = 127, .external_lex_state = 10}, - [362] = {.lex_state = 127, .external_lex_state = 10}, - [363] = {.lex_state = 127, .external_lex_state = 10}, - [364] = {.lex_state = 62}, - [365] = {.lex_state = 158, .external_lex_state = 6}, - [366] = {.lex_state = 160, .external_lex_state = 16}, - [367] = {.lex_state = 160, .external_lex_state = 16}, - [368] = {.lex_state = 160, .external_lex_state = 16}, - [369] = {.lex_state = 127, .external_lex_state = 4}, - [370] = {.lex_state = 131, .external_lex_state = 8}, - [371] = {.lex_state = 56, .external_lex_state = 2}, - [372] = {.lex_state = 83, .external_lex_state = 4}, - [373] = {.lex_state = 114, .external_lex_state = 8}, - [374] = {.lex_state = 56, .external_lex_state = 2}, - [375] = {.lex_state = 127, .external_lex_state = 4}, - [376] = {.lex_state = 131, .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 = 152}, - [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 = 158, .external_lex_state = 6}, - [389] = {.lex_state = 160, .external_lex_state = 16}, - [390] = {.lex_state = 160, .external_lex_state = 16}, - [391] = {.lex_state = 160, .external_lex_state = 16}, - [392] = {.lex_state = 127, .external_lex_state = 4}, - [393] = {.lex_state = 131, .external_lex_state = 8}, - [394] = {.lex_state = 56, .external_lex_state = 2}, - [395] = {.lex_state = 83, .external_lex_state = 4}, - [396] = {.lex_state = 114, .external_lex_state = 8}, - [397] = {.lex_state = 56, .external_lex_state = 2}, - [398] = {.lex_state = 127, .external_lex_state = 4}, - [399] = {.lex_state = 131, .external_lex_state = 8}, - [400] = {.lex_state = 56, .external_lex_state = 2}, - [401] = {.lex_state = 116, .external_lex_state = 5}, - [402] = {.lex_state = 88, .external_lex_state = 5}, - [403] = {.lex_state = 116, .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 = 158, .external_lex_state = 6}, - [410] = {.lex_state = 160, .external_lex_state = 16}, - [411] = {.lex_state = 160, .external_lex_state = 16}, - [412] = {.lex_state = 160, .external_lex_state = 16}, - [413] = {.lex_state = 127, .external_lex_state = 4}, - [414] = {.lex_state = 131, .external_lex_state = 8}, - [415] = {.lex_state = 56, .external_lex_state = 2}, - [416] = {.lex_state = 83, .external_lex_state = 4}, - [417] = {.lex_state = 114, .external_lex_state = 8}, - [418] = {.lex_state = 56, .external_lex_state = 2}, - [419] = {.lex_state = 152}, - [420] = {.lex_state = 91}, - [421] = {.lex_state = 73}, - [422] = {.lex_state = 218, .external_lex_state = 16}, - [423] = {.lex_state = 62}, - [424] = {.lex_state = 160, .external_lex_state = 16}, - [425] = {.lex_state = 160, .external_lex_state = 16}, - [426] = {.lex_state = 160, .external_lex_state = 16}, - [427] = {.lex_state = 116, .external_lex_state = 5}, - [428] = {.lex_state = 220, .external_lex_state = 22}, - [429] = {.lex_state = 91}, - [430] = {.lex_state = 98}, - [431] = {.lex_state = 220, .external_lex_state = 22}, - [432] = {.lex_state = 107, .external_lex_state = 6}, - [433] = {.lex_state = 222}, - [434] = {.lex_state = 56, .external_lex_state = 2}, - [435] = {.lex_state = 56, .external_lex_state = 2}, - [436] = {.lex_state = 56, .external_lex_state = 2}, - [437] = {.lex_state = 220, .external_lex_state = 16}, - [438] = {.lex_state = 116, .external_lex_state = 5}, - [439] = {.lex_state = 222}, - [440] = {.lex_state = 220, .external_lex_state = 16}, - [441] = {.lex_state = 116, .external_lex_state = 5}, - [442] = {.lex_state = 222}, - [443] = {.lex_state = 220, .external_lex_state = 16}, - [444] = {.lex_state = 116, .external_lex_state = 5}, - [445] = {.lex_state = 204, .external_lex_state = 2}, - [446] = {.lex_state = 127, .external_lex_state = 4}, - [447] = {.lex_state = 131, .external_lex_state = 8}, - [448] = {.lex_state = 73}, - [449] = {.lex_state = 125}, - [450] = {.lex_state = 135, .external_lex_state = 12}, - [451] = {.lex_state = 148}, - [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 = 227, .external_lex_state = 7}, - [462] = {.lex_state = 88, .external_lex_state = 7}, - [463] = {.lex_state = 83, .external_lex_state = 4}, - [464] = {.lex_state = 114, .external_lex_state = 8}, - [465] = {.lex_state = 88, .external_lex_state = 7}, - [466] = {.lex_state = 116, .external_lex_state = 5}, - [467] = {.lex_state = 204, .external_lex_state = 2}, - [468] = {.lex_state = 127, .external_lex_state = 4}, - [469] = {.lex_state = 131, .external_lex_state = 8}, - [470] = {.lex_state = 125}, - [471] = {.lex_state = 133, .external_lex_state = 4}, - [472] = {.lex_state = 131, .external_lex_state = 8}, - [473] = {.lex_state = 83, .external_lex_state = 4}, - [474] = {.lex_state = 114, .external_lex_state = 8}, - [475] = {.lex_state = 133, .external_lex_state = 4}, - [476] = {.lex_state = 98}, - [477] = {.lex_state = 107, .external_lex_state = 6}, - [478] = {.lex_state = 166, .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 = 116, .external_lex_state = 7}, - [483] = {.lex_state = 189, .external_lex_state = 5}, - [484] = {.lex_state = 189, .external_lex_state = 5}, - [485] = {.lex_state = 229, .external_lex_state = 7}, - [486] = {.lex_state = 229, .external_lex_state = 7}, - [487] = {.lex_state = 189, .external_lex_state = 5}, - [488] = {.lex_state = 189, .external_lex_state = 5}, - [489] = {.lex_state = 229, .external_lex_state = 7}, - [490] = {.lex_state = 133, .external_lex_state = 4}, - [491] = {.lex_state = 189, .external_lex_state = 7}, - [492] = {.lex_state = 189, .external_lex_state = 7}, - [493] = {.lex_state = 88, .external_lex_state = 7}, - [494] = {.lex_state = 88, .external_lex_state = 7}, - [495] = {.lex_state = 193, .external_lex_state = 12}, - [496] = {.lex_state = 62, .external_lex_state = 13}, - [497] = {.lex_state = 193, .external_lex_state = 11}, - [498] = {.lex_state = 193, .external_lex_state = 12}, - [499] = {.lex_state = 62, .external_lex_state = 13}, - [500] = {.lex_state = 135, .external_lex_state = 12}, - [501] = {.lex_state = 131, .external_lex_state = 8}, - [502] = {.lex_state = 195, .external_lex_state = 13}, - [503] = {.lex_state = 91}, - [504] = {.lex_state = 98}, - [505] = {.lex_state = 195, .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 = 195}, - [511] = {.lex_state = 73}, - [512] = {.lex_state = 114, .external_lex_state = 19}, - [513] = {.lex_state = 131, .external_lex_state = 19}, - [514] = {.lex_state = 152}, - [515] = {.lex_state = 91}, - [516] = {.lex_state = 131, .external_lex_state = 19}, - [517] = {.lex_state = 131, .external_lex_state = 19}, - [518] = {.lex_state = 131, .external_lex_state = 19}, - [519] = {.lex_state = 62}, - [520] = {.lex_state = 158, .external_lex_state = 6}, - [521] = {.lex_state = 160, .external_lex_state = 16}, - [522] = {.lex_state = 160, .external_lex_state = 16}, - [523] = {.lex_state = 160, .external_lex_state = 16}, - [524] = {.lex_state = 127, .external_lex_state = 4}, - [525] = {.lex_state = 131, .external_lex_state = 8}, - [526] = {.lex_state = 56, .external_lex_state = 2}, - [527] = {.lex_state = 83, .external_lex_state = 4}, - [528] = {.lex_state = 114, .external_lex_state = 8}, - [529] = {.lex_state = 56, .external_lex_state = 2}, - [530] = {.lex_state = 127, .external_lex_state = 4}, - [531] = {.lex_state = 131, .external_lex_state = 8}, - [532] = {.lex_state = 56, .external_lex_state = 2}, - [533] = {.lex_state = 231}, - [534] = {.lex_state = 197, .external_lex_state = 4}, - [535] = {.lex_state = 208}, - [536] = {.lex_state = 197, .external_lex_state = 4}, - [537] = {.lex_state = 73}, - [538] = {.lex_state = 197, .external_lex_state = 10}, - [539] = {.lex_state = 235, .external_lex_state = 10}, - [540] = {.lex_state = 152}, - [541] = {.lex_state = 91}, - [542] = {.lex_state = 235, .external_lex_state = 10}, - [543] = {.lex_state = 235, .external_lex_state = 10}, - [544] = {.lex_state = 235, .external_lex_state = 10}, - [545] = {.lex_state = 62}, - [546] = {.lex_state = 158, .external_lex_state = 6}, - [547] = {.lex_state = 160, .external_lex_state = 16}, - [548] = {.lex_state = 160, .external_lex_state = 16}, - [549] = {.lex_state = 160, .external_lex_state = 16}, - [550] = {.lex_state = 127, .external_lex_state = 4}, - [551] = {.lex_state = 131, .external_lex_state = 8}, - [552] = {.lex_state = 56, .external_lex_state = 2}, - [553] = {.lex_state = 83, .external_lex_state = 4}, - [554] = {.lex_state = 114, .external_lex_state = 8}, - [555] = {.lex_state = 56, .external_lex_state = 2}, - [556] = {.lex_state = 127, .external_lex_state = 4}, - [557] = {.lex_state = 131, .external_lex_state = 8}, - [558] = {.lex_state = 56, .external_lex_state = 2}, - [559] = {.lex_state = 120, .external_lex_state = 4}, - [560] = {.lex_state = 77}, - [561] = {.lex_state = 210}, - [562] = {.lex_state = 123, .external_lex_state = 10}, - [563] = {.lex_state = 123, .external_lex_state = 10}, - [564] = {.lex_state = 123, .external_lex_state = 4}, - [565] = {.lex_state = 56, .external_lex_state = 2}, - [566] = {.lex_state = 133, .external_lex_state = 4}, - [567] = {.lex_state = 229, .external_lex_state = 7}, - [568] = {.lex_state = 56, .external_lex_state = 2}, - [569] = {.lex_state = 133, .external_lex_state = 4}, - [570] = {.lex_state = 189, .external_lex_state = 7}, - [571] = {.lex_state = 133, .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 = 123, .external_lex_state = 10}, - [579] = {.lex_state = 73}, - [580] = {.lex_state = 120, .external_lex_state = 4}, - [581] = {.lex_state = 123, .external_lex_state = 10}, - [582] = {.lex_state = 123, .external_lex_state = 10}, - [583] = {.lex_state = 152}, - [584] = {.lex_state = 73}, - [585] = {.lex_state = 120, .external_lex_state = 4}, - [586] = {.lex_state = 218, .external_lex_state = 16}, - [587] = {.lex_state = 62}, - [588] = {.lex_state = 160, .external_lex_state = 16}, - [589] = {.lex_state = 160, .external_lex_state = 16}, - [590] = {.lex_state = 160, .external_lex_state = 16}, - [591] = {.lex_state = 123, .external_lex_state = 10}, - [592] = {.lex_state = 222}, - [593] = {.lex_state = 220, .external_lex_state = 16}, - [594] = {.lex_state = 123, .external_lex_state = 10}, - [595] = {.lex_state = 222}, - [596] = {.lex_state = 220, .external_lex_state = 16}, - [597] = {.lex_state = 123, .external_lex_state = 10}, - [598] = {.lex_state = 222}, - [599] = {.lex_state = 220, .external_lex_state = 16}, - [600] = {.lex_state = 123, .external_lex_state = 10}, - [601] = {.lex_state = 204, .external_lex_state = 2}, - [602] = {.lex_state = 127, .external_lex_state = 4}, - [603] = {.lex_state = 131, .external_lex_state = 8}, - [604] = {.lex_state = 56, .external_lex_state = 2}, - [605] = {.lex_state = 83, .external_lex_state = 4}, - [606] = {.lex_state = 114, .external_lex_state = 8}, - [607] = {.lex_state = 123, .external_lex_state = 10}, - [608] = {.lex_state = 204, .external_lex_state = 2}, - [609] = {.lex_state = 127, .external_lex_state = 4}, - [610] = {.lex_state = 131, .external_lex_state = 8}, - [611] = {.lex_state = 125}, - [612] = {.lex_state = 239, .external_lex_state = 21}, - [613] = {.lex_state = 83, .external_lex_state = 4}, - [614] = {.lex_state = 114, .external_lex_state = 8}, - [615] = {.lex_state = 199, .external_lex_state = 20}, - [616] = {.lex_state = 56}, - [617] = {.lex_state = 73}, - [618] = {.lex_state = 133, .external_lex_state = 4}, - [619] = {.lex_state = 131, .external_lex_state = 19}, - [620] = {.lex_state = 131, .external_lex_state = 19}, - [621] = {.lex_state = 206, .external_lex_state = 7}, - [622] = {.lex_state = 77}, - [623] = {.lex_state = 241, .external_lex_state = 21}, - [624] = {.lex_state = 206, .external_lex_state = 21}, - [625] = {.lex_state = 118, .external_lex_state = 9}, - [626] = {.lex_state = 127, .external_lex_state = 14}, - [627] = {.lex_state = 127, .external_lex_state = 3}, - [628] = {.lex_state = 127, .external_lex_state = 10}, - [629] = {.lex_state = 127, .external_lex_state = 4}, - [630] = {.lex_state = 116, .external_lex_state = 5}, - [631] = {.lex_state = 125}, - [632] = {.lex_state = 133, .external_lex_state = 4}, - [633] = {.lex_state = 127, .external_lex_state = 4}, - [634] = {.lex_state = 131, .external_lex_state = 8}, - [635] = {.lex_state = 73}, - [636] = {.lex_state = 116, .external_lex_state = 5}, - [637] = {.lex_state = 116, .external_lex_state = 5}, - [638] = {.lex_state = 206, .external_lex_state = 5}, - [639] = {.lex_state = 206, .external_lex_state = 5}, - [640] = {.lex_state = 206, .external_lex_state = 5}, - [641] = {.lex_state = 206, .external_lex_state = 5}, - [642] = {.lex_state = 206, .external_lex_state = 7}, - [643] = {.lex_state = 206, .external_lex_state = 7}, - [644] = {.lex_state = 116, .external_lex_state = 7}, - [645] = {.lex_state = 204, .external_lex_state = 2}, - [646] = {.lex_state = 116, .external_lex_state = 7}, - [647] = {.lex_state = 73, .external_lex_state = 2}, - [648] = {.lex_state = 195}, - [649] = {.lex_state = 73, .external_lex_state = 15}, - [650] = {.lex_state = 73, .external_lex_state = 15}, - [651] = {.lex_state = 208}, - [652] = {.lex_state = 208, .external_lex_state = 13}, - [653] = {.lex_state = 135, .external_lex_state = 12}, - [654] = {.lex_state = 77}, - [655] = {.lex_state = 210}, - [656] = {.lex_state = 135, .external_lex_state = 11}, - [657] = {.lex_state = 135, .external_lex_state = 11}, - [658] = {.lex_state = 135, .external_lex_state = 11}, - [659] = {.lex_state = 152}, - [660] = {.lex_state = 218, .external_lex_state = 16}, - [661] = {.lex_state = 62}, - [662] = {.lex_state = 160, .external_lex_state = 16}, - [663] = {.lex_state = 160, .external_lex_state = 16}, - [664] = {.lex_state = 160, .external_lex_state = 16}, - [665] = {.lex_state = 135, .external_lex_state = 11}, - [666] = {.lex_state = 222}, - [667] = {.lex_state = 220, .external_lex_state = 16}, - [668] = {.lex_state = 135, .external_lex_state = 11}, - [669] = {.lex_state = 222}, - [670] = {.lex_state = 220, .external_lex_state = 16}, - [671] = {.lex_state = 135, .external_lex_state = 11}, - [672] = {.lex_state = 222}, - [673] = {.lex_state = 220, .external_lex_state = 16}, - [674] = {.lex_state = 135, .external_lex_state = 11}, - [675] = {.lex_state = 204, .external_lex_state = 2}, - [676] = {.lex_state = 127, .external_lex_state = 4}, - [677] = {.lex_state = 131, .external_lex_state = 8}, - [678] = {.lex_state = 56, .external_lex_state = 2}, - [679] = {.lex_state = 83, .external_lex_state = 4}, - [680] = {.lex_state = 114, .external_lex_state = 8}, - [681] = {.lex_state = 135, .external_lex_state = 11}, - [682] = {.lex_state = 204, .external_lex_state = 2}, - [683] = {.lex_state = 127, .external_lex_state = 4}, - [684] = {.lex_state = 131, .external_lex_state = 8}, - [685] = {.lex_state = 135, .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 = 189, .external_lex_state = 21}, - [691] = {.lex_state = 135, .external_lex_state = 12}, - [692] = {.lex_state = 243}, - [693] = {.lex_state = 215, .external_lex_state = 13}, - [694] = {.lex_state = 148, .external_lex_state = 13}, - [695] = {.lex_state = 215, .external_lex_state = 13}, - [696] = {.lex_state = 152}, - [697] = {.lex_state = 218, .external_lex_state = 16}, - [698] = {.lex_state = 62}, - [699] = {.lex_state = 160, .external_lex_state = 16}, - [700] = {.lex_state = 160, .external_lex_state = 16}, - [701] = {.lex_state = 160, .external_lex_state = 16}, - [702] = {.lex_state = 215, .external_lex_state = 13}, - [703] = {.lex_state = 222}, - [704] = {.lex_state = 220, .external_lex_state = 16}, - [705] = {.lex_state = 215, .external_lex_state = 13}, - [706] = {.lex_state = 222}, - [707] = {.lex_state = 220, .external_lex_state = 16}, - [708] = {.lex_state = 215, .external_lex_state = 13}, - [709] = {.lex_state = 222}, - [710] = {.lex_state = 220, .external_lex_state = 16}, - [711] = {.lex_state = 215, .external_lex_state = 13}, - [712] = {.lex_state = 204, .external_lex_state = 2}, - [713] = {.lex_state = 127, .external_lex_state = 4}, - [714] = {.lex_state = 131, .external_lex_state = 8}, - [715] = {.lex_state = 56, .external_lex_state = 2}, - [716] = {.lex_state = 83, .external_lex_state = 4}, - [717] = {.lex_state = 114, .external_lex_state = 8}, - [718] = {.lex_state = 215, .external_lex_state = 13}, - [719] = {.lex_state = 204, .external_lex_state = 2}, - [720] = {.lex_state = 127, .external_lex_state = 4}, - [721] = {.lex_state = 131, .external_lex_state = 8}, - [722] = {.lex_state = 243}, - [723] = {.lex_state = 243}, - [724] = {.lex_state = 127, .external_lex_state = 3}, - [725] = {.lex_state = 195}, - [726] = {.lex_state = 83, .external_lex_state = 14}, - [727] = {.lex_state = 83, .external_lex_state = 14}, - [728] = {.lex_state = 127, .external_lex_state = 14}, - [729] = {.lex_state = 83, .external_lex_state = 14}, - [730] = {.lex_state = 127, .external_lex_state = 14}, - [731] = {.lex_state = 152}, - [732] = {.lex_state = 218, .external_lex_state = 16}, - [733] = {.lex_state = 62}, - [734] = {.lex_state = 160, .external_lex_state = 16}, - [735] = {.lex_state = 160, .external_lex_state = 16}, - [736] = {.lex_state = 160, .external_lex_state = 16}, - [737] = {.lex_state = 127, .external_lex_state = 14}, - [738] = {.lex_state = 222}, - [739] = {.lex_state = 220, .external_lex_state = 16}, - [740] = {.lex_state = 127, .external_lex_state = 14}, - [741] = {.lex_state = 222}, - [742] = {.lex_state = 220, .external_lex_state = 16}, - [743] = {.lex_state = 127, .external_lex_state = 14}, - [744] = {.lex_state = 222}, - [745] = {.lex_state = 220, .external_lex_state = 16}, - [746] = {.lex_state = 127, .external_lex_state = 14}, - [747] = {.lex_state = 204, .external_lex_state = 2}, - [748] = {.lex_state = 127, .external_lex_state = 4}, - [749] = {.lex_state = 131, .external_lex_state = 8}, - [750] = {.lex_state = 56, .external_lex_state = 2}, - [751] = {.lex_state = 83, .external_lex_state = 4}, - [752] = {.lex_state = 114, .external_lex_state = 8}, - [753] = {.lex_state = 127, .external_lex_state = 14}, - [754] = {.lex_state = 204, .external_lex_state = 2}, - [755] = {.lex_state = 127, .external_lex_state = 4}, - [756] = {.lex_state = 131, .external_lex_state = 8}, - [757] = {.lex_state = 127, .external_lex_state = 10}, - [758] = {.lex_state = 83, .external_lex_state = 10}, - [759] = {.lex_state = 127, .external_lex_state = 10}, - [760] = {.lex_state = 152}, - [761] = {.lex_state = 218, .external_lex_state = 16}, - [762] = {.lex_state = 62}, - [763] = {.lex_state = 160, .external_lex_state = 16}, - [764] = {.lex_state = 160, .external_lex_state = 16}, - [765] = {.lex_state = 160, .external_lex_state = 16}, - [766] = {.lex_state = 127, .external_lex_state = 10}, - [767] = {.lex_state = 222}, - [768] = {.lex_state = 220, .external_lex_state = 16}, - [769] = {.lex_state = 127, .external_lex_state = 10}, - [770] = {.lex_state = 222}, - [771] = {.lex_state = 220, .external_lex_state = 16}, - [772] = {.lex_state = 127, .external_lex_state = 10}, - [773] = {.lex_state = 222}, - [774] = {.lex_state = 220, .external_lex_state = 16}, - [775] = {.lex_state = 127, .external_lex_state = 10}, - [776] = {.lex_state = 204, .external_lex_state = 2}, - [777] = {.lex_state = 127, .external_lex_state = 4}, - [778] = {.lex_state = 131, .external_lex_state = 8}, - [779] = {.lex_state = 56, .external_lex_state = 2}, - [780] = {.lex_state = 83, .external_lex_state = 4}, - [781] = {.lex_state = 114, .external_lex_state = 8}, - [782] = {.lex_state = 127, .external_lex_state = 10}, - [783] = {.lex_state = 204, .external_lex_state = 2}, - [784] = {.lex_state = 127, .external_lex_state = 4}, - [785] = {.lex_state = 131, .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 = 152}, - [790] = {.lex_state = 218, .external_lex_state = 16}, - [791] = {.lex_state = 62}, - [792] = {.lex_state = 160, .external_lex_state = 16}, - [793] = {.lex_state = 160, .external_lex_state = 16}, - [794] = {.lex_state = 160, .external_lex_state = 16}, - [795] = {.lex_state = 73, .external_lex_state = 15}, - [796] = {.lex_state = 222}, - [797] = {.lex_state = 220, .external_lex_state = 16}, - [798] = {.lex_state = 73, .external_lex_state = 15}, - [799] = {.lex_state = 222}, - [800] = {.lex_state = 220, .external_lex_state = 16}, - [801] = {.lex_state = 73, .external_lex_state = 15}, - [802] = {.lex_state = 222}, - [803] = {.lex_state = 220, .external_lex_state = 16}, - [804] = {.lex_state = 73, .external_lex_state = 15}, - [805] = {.lex_state = 204, .external_lex_state = 2}, - [806] = {.lex_state = 127, .external_lex_state = 4}, - [807] = {.lex_state = 131, .external_lex_state = 8}, - [808] = {.lex_state = 56, .external_lex_state = 2}, - [809] = {.lex_state = 83, .external_lex_state = 4}, - [810] = {.lex_state = 114, .external_lex_state = 8}, - [811] = {.lex_state = 73, .external_lex_state = 15}, - [812] = {.lex_state = 204, .external_lex_state = 2}, - [813] = {.lex_state = 127, .external_lex_state = 4}, - [814] = {.lex_state = 131, .external_lex_state = 8}, - [815] = {.lex_state = 91}, - [816] = {.lex_state = 218, .external_lex_state = 16}, - [817] = {.lex_state = 62}, - [818] = {.lex_state = 160, .external_lex_state = 16}, - [819] = {.lex_state = 160, .external_lex_state = 16}, - [820] = {.lex_state = 160, .external_lex_state = 16}, - [821] = {.lex_state = 91, .external_lex_state = 13}, - [822] = {.lex_state = 222}, - [823] = {.lex_state = 220, .external_lex_state = 16}, - [824] = {.lex_state = 91, .external_lex_state = 13}, - [825] = {.lex_state = 222}, - [826] = {.lex_state = 220, .external_lex_state = 16}, - [827] = {.lex_state = 91, .external_lex_state = 13}, - [828] = {.lex_state = 222}, - [829] = {.lex_state = 220, .external_lex_state = 16}, - [830] = {.lex_state = 91, .external_lex_state = 13}, - [831] = {.lex_state = 204, .external_lex_state = 2}, - [832] = {.lex_state = 127, .external_lex_state = 4}, - [833] = {.lex_state = 131, .external_lex_state = 8}, - [834] = {.lex_state = 56, .external_lex_state = 2}, - [835] = {.lex_state = 83, .external_lex_state = 4}, - [836] = {.lex_state = 114, .external_lex_state = 8}, - [837] = {.lex_state = 116, .external_lex_state = 5}, - [838] = {.lex_state = 152}, - [839] = {.lex_state = 193, .external_lex_state = 11}, - [840] = {.lex_state = 193, .external_lex_state = 11}, - [841] = {.lex_state = 193, .external_lex_state = 11}, - [842] = {.lex_state = 116, .external_lex_state = 5}, - [843] = {.lex_state = 199, .external_lex_state = 22}, - [844] = {.lex_state = 91}, - [845] = {.lex_state = 98}, - [846] = {.lex_state = 199, .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 = 199, .external_lex_state = 16}, - [852] = {.lex_state = 218, .external_lex_state = 16}, - [853] = {.lex_state = 116, .external_lex_state = 5}, - [854] = {.lex_state = 222}, - [855] = {.lex_state = 220, .external_lex_state = 16}, - [856] = {.lex_state = 116, .external_lex_state = 5}, - [857] = {.lex_state = 222}, - [858] = {.lex_state = 220, .external_lex_state = 16}, - [859] = {.lex_state = 222}, - [860] = {.lex_state = 220, .external_lex_state = 16}, - [861] = {.lex_state = 73}, - [862] = {.lex_state = 220, .external_lex_state = 22}, - [863] = {.lex_state = 220, .external_lex_state = 22}, - [864] = {.lex_state = 152}, - [865] = {.lex_state = 91}, - [866] = {.lex_state = 220, .external_lex_state = 22}, - [867] = {.lex_state = 220, .external_lex_state = 22}, - [868] = {.lex_state = 220, .external_lex_state = 22}, - [869] = {.lex_state = 62}, - [870] = {.lex_state = 158, .external_lex_state = 6}, - [871] = {.lex_state = 160, .external_lex_state = 16}, - [872] = {.lex_state = 160, .external_lex_state = 16}, - [873] = {.lex_state = 160, .external_lex_state = 16}, - [874] = {.lex_state = 220, .external_lex_state = 16}, - [875] = {.lex_state = 127, .external_lex_state = 4}, - [876] = {.lex_state = 131, .external_lex_state = 8}, - [877] = {.lex_state = 56, .external_lex_state = 2}, - [878] = {.lex_state = 83, .external_lex_state = 4}, - [879] = {.lex_state = 114, .external_lex_state = 8}, - [880] = {.lex_state = 56, .external_lex_state = 2}, - [881] = {.lex_state = 127, .external_lex_state = 4}, - [882] = {.lex_state = 131, .external_lex_state = 8}, - [883] = {.lex_state = 56, .external_lex_state = 2}, - [884] = {.lex_state = 116, .external_lex_state = 5}, - [885] = {.lex_state = 220, .external_lex_state = 16}, - [886] = {.lex_state = 220, .external_lex_state = 16}, - [887] = {.lex_state = 116, .external_lex_state = 5}, - [888] = {.lex_state = 220, .external_lex_state = 16}, - [889] = {.lex_state = 116, .external_lex_state = 5}, - [890] = {.lex_state = 204, .external_lex_state = 2}, - [891] = {.lex_state = 227, .external_lex_state = 7}, - [892] = {.lex_state = 77}, - [893] = {.lex_state = 245, .external_lex_state = 21}, - [894] = {.lex_state = 227, .external_lex_state = 21}, - [895] = {.lex_state = 125}, - [896] = {.lex_state = 114, .external_lex_state = 8}, - [897] = {.lex_state = 83, .external_lex_state = 4}, - [898] = {.lex_state = 114, .external_lex_state = 8}, - [899] = {.lex_state = 73}, - [900] = {.lex_state = 227, .external_lex_state = 5}, - [901] = {.lex_state = 227, .external_lex_state = 5}, - [902] = {.lex_state = 227, .external_lex_state = 5}, - [903] = {.lex_state = 227, .external_lex_state = 5}, - [904] = {.lex_state = 227, .external_lex_state = 7}, - [905] = {.lex_state = 227, .external_lex_state = 7}, - [906] = {.lex_state = 56, .external_lex_state = 2}, - [907] = {.lex_state = 88, .external_lex_state = 7}, - [908] = {.lex_state = 116, .external_lex_state = 5}, - [909] = {.lex_state = 204, .external_lex_state = 2}, - [910] = {.lex_state = 201, .external_lex_state = 21}, - [911] = {.lex_state = 166, .external_lex_state = 17}, - [912] = {.lex_state = 166, .external_lex_state = 17}, - [913] = {.lex_state = 62}, - [914] = {.lex_state = 158, .external_lex_state = 6}, - [915] = {.lex_state = 160, .external_lex_state = 16}, - [916] = {.lex_state = 160, .external_lex_state = 16}, - [917] = {.lex_state = 160, .external_lex_state = 16}, - [918] = {.lex_state = 133, .external_lex_state = 4}, - [919] = {.lex_state = 166, .external_lex_state = 17}, - [920] = {.lex_state = 189, .external_lex_state = 5}, - [921] = {.lex_state = 189, .external_lex_state = 5}, - [922] = {.lex_state = 229, .external_lex_state = 7}, - [923] = {.lex_state = 189, .external_lex_state = 5}, - [924] = {.lex_state = 133, .external_lex_state = 4}, - [925] = {.lex_state = 189, .external_lex_state = 7}, - [926] = {.lex_state = 62, .external_lex_state = 13}, - [927] = {.lex_state = 62}, - [928] = {.lex_state = 193, .external_lex_state = 11}, - [929] = {.lex_state = 62, .external_lex_state = 13}, - [930] = {.lex_state = 62}, - [931] = {.lex_state = 73}, - [932] = {.lex_state = 195, .external_lex_state = 13}, - [933] = {.lex_state = 195, .external_lex_state = 13}, - [934] = {.lex_state = 152}, - [935] = {.lex_state = 91}, - [936] = {.lex_state = 195, .external_lex_state = 13}, - [937] = {.lex_state = 195, .external_lex_state = 13}, - [938] = {.lex_state = 195, .external_lex_state = 13}, - [939] = {.lex_state = 62}, - [940] = {.lex_state = 158, .external_lex_state = 6}, - [941] = {.lex_state = 160, .external_lex_state = 16}, - [942] = {.lex_state = 160, .external_lex_state = 16}, - [943] = {.lex_state = 160, .external_lex_state = 16}, - [944] = {.lex_state = 127, .external_lex_state = 4}, - [945] = {.lex_state = 131, .external_lex_state = 8}, - [946] = {.lex_state = 56, .external_lex_state = 2}, - [947] = {.lex_state = 83, .external_lex_state = 4}, - [948] = {.lex_state = 114, .external_lex_state = 8}, - [949] = {.lex_state = 56, .external_lex_state = 2}, - [950] = {.lex_state = 127, .external_lex_state = 4}, - [951] = {.lex_state = 131, .external_lex_state = 8}, - [952] = {.lex_state = 56, .external_lex_state = 2}, - [953] = {.lex_state = 131, .external_lex_state = 8}, - [954] = {.lex_state = 195}, - [955] = {.lex_state = 131, .external_lex_state = 19}, - [956] = {.lex_state = 114, .external_lex_state = 19}, - [957] = {.lex_state = 131, .external_lex_state = 19}, - [958] = {.lex_state = 152}, - [959] = {.lex_state = 218, .external_lex_state = 16}, - [960] = {.lex_state = 62}, - [961] = {.lex_state = 160, .external_lex_state = 16}, - [962] = {.lex_state = 160, .external_lex_state = 16}, - [963] = {.lex_state = 160, .external_lex_state = 16}, - [964] = {.lex_state = 131, .external_lex_state = 19}, - [965] = {.lex_state = 222}, - [966] = {.lex_state = 220, .external_lex_state = 16}, - [967] = {.lex_state = 131, .external_lex_state = 19}, - [968] = {.lex_state = 222}, - [969] = {.lex_state = 220, .external_lex_state = 16}, - [970] = {.lex_state = 131, .external_lex_state = 19}, - [971] = {.lex_state = 222}, - [972] = {.lex_state = 220, .external_lex_state = 16}, - [973] = {.lex_state = 131, .external_lex_state = 19}, - [974] = {.lex_state = 204, .external_lex_state = 2}, - [975] = {.lex_state = 127, .external_lex_state = 4}, - [976] = {.lex_state = 131, .external_lex_state = 8}, - [977] = {.lex_state = 56, .external_lex_state = 2}, - [978] = {.lex_state = 83, .external_lex_state = 4}, - [979] = {.lex_state = 114, .external_lex_state = 8}, - [980] = {.lex_state = 131, .external_lex_state = 19}, - [981] = {.lex_state = 204, .external_lex_state = 2}, - [982] = {.lex_state = 127, .external_lex_state = 4}, - [983] = {.lex_state = 131, .external_lex_state = 8}, - [984] = {.lex_state = 247}, - [985] = {.lex_state = 77}, - [986] = {.lex_state = 77}, - [987] = {.lex_state = 249, .external_lex_state = 13}, - [988] = {.lex_state = 91}, - [989] = {.lex_state = 98}, - [990] = {.lex_state = 249, .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 = 249}, - [996] = {.lex_state = 231}, - [997] = {.lex_state = 197, .external_lex_state = 4}, - [998] = {.lex_state = 235, .external_lex_state = 10}, - [999] = {.lex_state = 197, .external_lex_state = 10}, - [1000] = {.lex_state = 235, .external_lex_state = 10}, - [1001] = {.lex_state = 152}, - [1002] = {.lex_state = 218, .external_lex_state = 16}, - [1003] = {.lex_state = 62}, - [1004] = {.lex_state = 160, .external_lex_state = 16}, - [1005] = {.lex_state = 160, .external_lex_state = 16}, - [1006] = {.lex_state = 160, .external_lex_state = 16}, - [1007] = {.lex_state = 235, .external_lex_state = 10}, - [1008] = {.lex_state = 222}, - [1009] = {.lex_state = 220, .external_lex_state = 16}, - [1010] = {.lex_state = 235, .external_lex_state = 10}, - [1011] = {.lex_state = 222}, - [1012] = {.lex_state = 220, .external_lex_state = 16}, - [1013] = {.lex_state = 235, .external_lex_state = 10}, - [1014] = {.lex_state = 222}, - [1015] = {.lex_state = 220, .external_lex_state = 16}, - [1016] = {.lex_state = 235, .external_lex_state = 10}, - [1017] = {.lex_state = 204, .external_lex_state = 2}, - [1018] = {.lex_state = 127, .external_lex_state = 4}, - [1019] = {.lex_state = 131, .external_lex_state = 8}, - [1020] = {.lex_state = 56, .external_lex_state = 2}, - [1021] = {.lex_state = 83, .external_lex_state = 4}, - [1022] = {.lex_state = 114, .external_lex_state = 8}, - [1023] = {.lex_state = 235, .external_lex_state = 10}, - [1024] = {.lex_state = 204, .external_lex_state = 2}, - [1025] = {.lex_state = 127, .external_lex_state = 4}, - [1026] = {.lex_state = 131, .external_lex_state = 8}, - [1027] = {.lex_state = 197, .external_lex_state = 4}, - [1028] = {.lex_state = 197, .external_lex_state = 4}, - [1029] = {.lex_state = 197, .external_lex_state = 4}, - [1030] = {.lex_state = 123, .external_lex_state = 10}, - [1031] = {.lex_state = 73}, - [1032] = {.lex_state = 123, .external_lex_state = 4}, - [1033] = {.lex_state = 133, .external_lex_state = 4}, - [1034] = {.lex_state = 56, .external_lex_state = 2}, - [1035] = {.lex_state = 229, .external_lex_state = 7}, - [1036] = {.lex_state = 56, .external_lex_state = 2}, - [1037] = {.lex_state = 133, .external_lex_state = 4}, - [1038] = {.lex_state = 73}, - [1039] = {.lex_state = 56, .external_lex_state = 2}, - [1040] = {.lex_state = 133, .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 = 133, .external_lex_state = 4}, - [1046] = {.lex_state = 251, .external_lex_state = 13}, - [1047] = {.lex_state = 251, .external_lex_state = 13}, - [1048] = {.lex_state = 73}, - [1049] = {.lex_state = 251}, - [1050] = {.lex_state = 73}, - [1051] = {.lex_state = 73}, - [1052] = {.lex_state = 123, .external_lex_state = 10}, - [1053] = {.lex_state = 133, .external_lex_state = 4}, - [1054] = {.lex_state = 73}, - [1055] = {.lex_state = 73}, - [1056] = {.lex_state = 73}, - [1057] = {.lex_state = 123, .external_lex_state = 10}, - [1058] = {.lex_state = 199, .external_lex_state = 22}, - [1059] = {.lex_state = 199, .external_lex_state = 22}, - [1060] = {.lex_state = 199, .external_lex_state = 16}, - [1061] = {.lex_state = 218, .external_lex_state = 16}, - [1062] = {.lex_state = 123, .external_lex_state = 10}, - [1063] = {.lex_state = 222}, - [1064] = {.lex_state = 220, .external_lex_state = 16}, - [1065] = {.lex_state = 123, .external_lex_state = 10}, - [1066] = {.lex_state = 222}, - [1067] = {.lex_state = 220, .external_lex_state = 16}, - [1068] = {.lex_state = 222}, - [1069] = {.lex_state = 220, .external_lex_state = 16}, - [1070] = {.lex_state = 220, .external_lex_state = 16}, - [1071] = {.lex_state = 123, .external_lex_state = 10}, - [1072] = {.lex_state = 220, .external_lex_state = 16}, - [1073] = {.lex_state = 123, .external_lex_state = 10}, - [1074] = {.lex_state = 220, .external_lex_state = 16}, - [1075] = {.lex_state = 123, .external_lex_state = 10}, - [1076] = {.lex_state = 204, .external_lex_state = 2}, - [1077] = {.lex_state = 56, .external_lex_state = 2}, - [1078] = {.lex_state = 123, .external_lex_state = 10}, - [1079] = {.lex_state = 204, .external_lex_state = 2}, - [1080] = {.lex_state = 201, .external_lex_state = 21}, - [1081] = {.lex_state = 199, .external_lex_state = 20}, - [1082] = {.lex_state = 239, .external_lex_state = 21}, - [1083] = {.lex_state = 199, .external_lex_state = 20}, - [1084] = {.lex_state = 73}, - [1085] = {.lex_state = 133, .external_lex_state = 10}, - [1086] = {.lex_state = 133, .external_lex_state = 10}, - [1087] = {.lex_state = 133, .external_lex_state = 4}, - [1088] = {.lex_state = 131, .external_lex_state = 19}, - [1089] = {.lex_state = 206, .external_lex_state = 7}, - [1090] = {.lex_state = 125}, - [1091] = {.lex_state = 56}, - [1092] = {.lex_state = 73}, - [1093] = {.lex_state = 56}, - [1094] = {.lex_state = 73}, - [1095] = {.lex_state = 73}, - [1096] = {.lex_state = 206, .external_lex_state = 21}, - [1097] = {.lex_state = 127, .external_lex_state = 14}, - [1098] = {.lex_state = 127, .external_lex_state = 14}, - [1099] = {.lex_state = 127, .external_lex_state = 14}, - [1100] = {.lex_state = 127, .external_lex_state = 10}, - [1101] = {.lex_state = 241, .external_lex_state = 21}, - [1102] = {.lex_state = 206, .external_lex_state = 5}, - [1103] = {.lex_state = 206, .external_lex_state = 5}, - [1104] = {.lex_state = 206, .external_lex_state = 5}, - [1105] = {.lex_state = 133, .external_lex_state = 4}, - [1106] = {.lex_state = 206, .external_lex_state = 7}, - [1107] = {.lex_state = 73, .external_lex_state = 2}, - [1108] = {.lex_state = 195}, - [1109] = {.lex_state = 208, .external_lex_state = 13}, - [1110] = {.lex_state = 135, .external_lex_state = 11}, - [1111] = {.lex_state = 135, .external_lex_state = 11}, - [1112] = {.lex_state = 199, .external_lex_state = 22}, - [1113] = {.lex_state = 199, .external_lex_state = 22}, - [1114] = {.lex_state = 199, .external_lex_state = 16}, - [1115] = {.lex_state = 218, .external_lex_state = 16}, - [1116] = {.lex_state = 135, .external_lex_state = 11}, - [1117] = {.lex_state = 222}, - [1118] = {.lex_state = 220, .external_lex_state = 16}, - [1119] = {.lex_state = 135, .external_lex_state = 11}, - [1120] = {.lex_state = 222}, - [1121] = {.lex_state = 220, .external_lex_state = 16}, - [1122] = {.lex_state = 222}, - [1123] = {.lex_state = 220, .external_lex_state = 16}, - [1124] = {.lex_state = 220, .external_lex_state = 16}, - [1125] = {.lex_state = 135, .external_lex_state = 11}, - [1126] = {.lex_state = 220, .external_lex_state = 16}, - [1127] = {.lex_state = 135, .external_lex_state = 11}, - [1128] = {.lex_state = 220, .external_lex_state = 16}, - [1129] = {.lex_state = 135, .external_lex_state = 11}, - [1130] = {.lex_state = 204, .external_lex_state = 2}, - [1131] = {.lex_state = 56, .external_lex_state = 2}, - [1132] = {.lex_state = 135, .external_lex_state = 11}, - [1133] = {.lex_state = 204, .external_lex_state = 2}, - [1134] = {.lex_state = 73}, - [1135] = {.lex_state = 189, .external_lex_state = 23}, - [1136] = {.lex_state = 91}, - [1137] = {.lex_state = 98}, - [1138] = {.lex_state = 189, .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 = 229, .external_lex_state = 21}, - [1144] = {.lex_state = 229, .external_lex_state = 21}, - [1145] = {.lex_state = 189, .external_lex_state = 23}, - [1146] = {.lex_state = 189, .external_lex_state = 23}, - [1147] = {.lex_state = 229, .external_lex_state = 21}, - [1148] = {.lex_state = 189, .external_lex_state = 21}, - [1149] = {.lex_state = 215, .external_lex_state = 13}, - [1150] = {.lex_state = 215, .external_lex_state = 13}, - [1151] = {.lex_state = 199, .external_lex_state = 22}, - [1152] = {.lex_state = 199, .external_lex_state = 22}, - [1153] = {.lex_state = 199, .external_lex_state = 16}, - [1154] = {.lex_state = 218, .external_lex_state = 16}, - [1155] = {.lex_state = 215, .external_lex_state = 13}, - [1156] = {.lex_state = 222}, - [1157] = {.lex_state = 220, .external_lex_state = 16}, - [1158] = {.lex_state = 215, .external_lex_state = 13}, - [1159] = {.lex_state = 222}, - [1160] = {.lex_state = 220, .external_lex_state = 16}, - [1161] = {.lex_state = 222}, - [1162] = {.lex_state = 220, .external_lex_state = 16}, - [1163] = {.lex_state = 220, .external_lex_state = 16}, - [1164] = {.lex_state = 215, .external_lex_state = 13}, - [1165] = {.lex_state = 220, .external_lex_state = 16}, - [1166] = {.lex_state = 215, .external_lex_state = 13}, - [1167] = {.lex_state = 220, .external_lex_state = 16}, - [1168] = {.lex_state = 215, .external_lex_state = 13}, - [1169] = {.lex_state = 204, .external_lex_state = 2}, - [1170] = {.lex_state = 56, .external_lex_state = 2}, - [1171] = {.lex_state = 215, .external_lex_state = 13}, - [1172] = {.lex_state = 204, .external_lex_state = 2}, - [1173] = {.lex_state = 127, .external_lex_state = 3}, - [1174] = {.lex_state = 195}, - [1175] = {.lex_state = 127, .external_lex_state = 14}, - [1176] = {.lex_state = 127, .external_lex_state = 14}, - [1177] = {.lex_state = 199, .external_lex_state = 22}, - [1178] = {.lex_state = 199, .external_lex_state = 22}, - [1179] = {.lex_state = 199, .external_lex_state = 16}, - [1180] = {.lex_state = 218, .external_lex_state = 16}, - [1181] = {.lex_state = 127, .external_lex_state = 14}, - [1182] = {.lex_state = 222}, - [1183] = {.lex_state = 220, .external_lex_state = 16}, - [1184] = {.lex_state = 127, .external_lex_state = 14}, - [1185] = {.lex_state = 222}, - [1186] = {.lex_state = 220, .external_lex_state = 16}, - [1187] = {.lex_state = 222}, - [1188] = {.lex_state = 220, .external_lex_state = 16}, - [1189] = {.lex_state = 220, .external_lex_state = 16}, - [1190] = {.lex_state = 127, .external_lex_state = 14}, - [1191] = {.lex_state = 220, .external_lex_state = 16}, - [1192] = {.lex_state = 127, .external_lex_state = 14}, - [1193] = {.lex_state = 220, .external_lex_state = 16}, - [1194] = {.lex_state = 127, .external_lex_state = 14}, - [1195] = {.lex_state = 204, .external_lex_state = 2}, - [1196] = {.lex_state = 56, .external_lex_state = 2}, - [1197] = {.lex_state = 127, .external_lex_state = 14}, - [1198] = {.lex_state = 204, .external_lex_state = 2}, - [1199] = {.lex_state = 127, .external_lex_state = 10}, - [1200] = {.lex_state = 127, .external_lex_state = 10}, - [1201] = {.lex_state = 199, .external_lex_state = 22}, - [1202] = {.lex_state = 199, .external_lex_state = 22}, - [1203] = {.lex_state = 199, .external_lex_state = 16}, - [1204] = {.lex_state = 218, .external_lex_state = 16}, - [1205] = {.lex_state = 127, .external_lex_state = 10}, - [1206] = {.lex_state = 222}, - [1207] = {.lex_state = 220, .external_lex_state = 16}, - [1208] = {.lex_state = 127, .external_lex_state = 10}, - [1209] = {.lex_state = 222}, - [1210] = {.lex_state = 220, .external_lex_state = 16}, - [1211] = {.lex_state = 222}, - [1212] = {.lex_state = 220, .external_lex_state = 16}, - [1213] = {.lex_state = 220, .external_lex_state = 16}, - [1214] = {.lex_state = 127, .external_lex_state = 10}, - [1215] = {.lex_state = 220, .external_lex_state = 16}, - [1216] = {.lex_state = 127, .external_lex_state = 10}, - [1217] = {.lex_state = 220, .external_lex_state = 16}, - [1218] = {.lex_state = 127, .external_lex_state = 10}, - [1219] = {.lex_state = 204, .external_lex_state = 2}, - [1220] = {.lex_state = 56, .external_lex_state = 2}, - [1221] = {.lex_state = 127, .external_lex_state = 10}, - [1222] = {.lex_state = 204, .external_lex_state = 2}, - [1223] = {.lex_state = 73, .external_lex_state = 15}, - [1224] = {.lex_state = 73, .external_lex_state = 15}, - [1225] = {.lex_state = 199, .external_lex_state = 22}, - [1226] = {.lex_state = 199, .external_lex_state = 22}, - [1227] = {.lex_state = 199, .external_lex_state = 16}, - [1228] = {.lex_state = 218, .external_lex_state = 16}, - [1229] = {.lex_state = 73, .external_lex_state = 15}, - [1230] = {.lex_state = 222}, - [1231] = {.lex_state = 220, .external_lex_state = 16}, - [1232] = {.lex_state = 73, .external_lex_state = 15}, - [1233] = {.lex_state = 222}, - [1234] = {.lex_state = 220, .external_lex_state = 16}, - [1235] = {.lex_state = 222}, - [1236] = {.lex_state = 220, .external_lex_state = 16}, - [1237] = {.lex_state = 220, .external_lex_state = 16}, - [1238] = {.lex_state = 73, .external_lex_state = 15}, - [1239] = {.lex_state = 220, .external_lex_state = 16}, - [1240] = {.lex_state = 73, .external_lex_state = 15}, - [1241] = {.lex_state = 220, .external_lex_state = 16}, - [1242] = {.lex_state = 73, .external_lex_state = 15}, - [1243] = {.lex_state = 204, .external_lex_state = 2}, - [1244] = {.lex_state = 56, .external_lex_state = 2}, - [1245] = {.lex_state = 73, .external_lex_state = 15}, - [1246] = {.lex_state = 204, .external_lex_state = 2}, - [1247] = {.lex_state = 91, .external_lex_state = 13}, - [1248] = {.lex_state = 199, .external_lex_state = 22}, - [1249] = {.lex_state = 199, .external_lex_state = 22}, - [1250] = {.lex_state = 199, .external_lex_state = 16}, - [1251] = {.lex_state = 218, .external_lex_state = 16}, - [1252] = {.lex_state = 91, .external_lex_state = 13}, - [1253] = {.lex_state = 222}, - [1254] = {.lex_state = 220, .external_lex_state = 16}, - [1255] = {.lex_state = 91, .external_lex_state = 13}, - [1256] = {.lex_state = 222}, - [1257] = {.lex_state = 220, .external_lex_state = 16}, - [1258] = {.lex_state = 222}, - [1259] = {.lex_state = 220, .external_lex_state = 16}, - [1260] = {.lex_state = 220, .external_lex_state = 16}, - [1261] = {.lex_state = 91, .external_lex_state = 13}, - [1262] = {.lex_state = 220, .external_lex_state = 16}, - [1263] = {.lex_state = 91, .external_lex_state = 13}, - [1264] = {.lex_state = 220, .external_lex_state = 16}, - [1265] = {.lex_state = 91, .external_lex_state = 13}, - [1266] = {.lex_state = 204, .external_lex_state = 2}, - [1267] = {.lex_state = 56, .external_lex_state = 2}, - [1268] = {.lex_state = 193, .external_lex_state = 12}, - [1269] = {.lex_state = 160, .external_lex_state = 22}, - [1270] = {.lex_state = 193, .external_lex_state = 12}, - [1271] = {.lex_state = 160, .external_lex_state = 22}, - [1272] = {.lex_state = 135, .external_lex_state = 12}, - [1273] = {.lex_state = 73}, - [1274] = {.lex_state = 116, .external_lex_state = 5}, - [1275] = {.lex_state = 199, .external_lex_state = 22}, - [1276] = {.lex_state = 199, .external_lex_state = 22}, - [1277] = {.lex_state = 152}, - [1278] = {.lex_state = 91}, - [1279] = {.lex_state = 199, .external_lex_state = 22}, - [1280] = {.lex_state = 199, .external_lex_state = 22}, - [1281] = {.lex_state = 199, .external_lex_state = 22}, - [1282] = {.lex_state = 116, .external_lex_state = 5}, - [1283] = {.lex_state = 62}, - [1284] = {.lex_state = 158, .external_lex_state = 6}, - [1285] = {.lex_state = 160, .external_lex_state = 16}, - [1286] = {.lex_state = 160, .external_lex_state = 16}, - [1287] = {.lex_state = 160, .external_lex_state = 16}, - [1288] = {.lex_state = 127, .external_lex_state = 4}, - [1289] = {.lex_state = 131, .external_lex_state = 8}, - [1290] = {.lex_state = 56, .external_lex_state = 2}, - [1291] = {.lex_state = 83, .external_lex_state = 4}, - [1292] = {.lex_state = 114, .external_lex_state = 8}, - [1293] = {.lex_state = 56, .external_lex_state = 2}, - [1294] = {.lex_state = 127, .external_lex_state = 4}, - [1295] = {.lex_state = 131, .external_lex_state = 8}, - [1296] = {.lex_state = 56, .external_lex_state = 2}, - [1297] = {.lex_state = 199, .external_lex_state = 22}, - [1298] = {.lex_state = 199, .external_lex_state = 22}, - [1299] = {.lex_state = 199, .external_lex_state = 16}, - [1300] = {.lex_state = 220, .external_lex_state = 16}, - [1301] = {.lex_state = 116, .external_lex_state = 5}, - [1302] = {.lex_state = 220, .external_lex_state = 16}, - [1303] = {.lex_state = 116, .external_lex_state = 5}, - [1304] = {.lex_state = 220, .external_lex_state = 16}, - [1305] = {.lex_state = 220, .external_lex_state = 22}, - [1306] = {.lex_state = 220, .external_lex_state = 22}, - [1307] = {.lex_state = 220, .external_lex_state = 22}, - [1308] = {.lex_state = 152}, - [1309] = {.lex_state = 218, .external_lex_state = 16}, - [1310] = {.lex_state = 62}, - [1311] = {.lex_state = 160, .external_lex_state = 16}, - [1312] = {.lex_state = 160, .external_lex_state = 16}, - [1313] = {.lex_state = 160, .external_lex_state = 16}, - [1314] = {.lex_state = 220, .external_lex_state = 22}, - [1315] = {.lex_state = 222}, - [1316] = {.lex_state = 220, .external_lex_state = 16}, - [1317] = {.lex_state = 220, .external_lex_state = 22}, - [1318] = {.lex_state = 222}, - [1319] = {.lex_state = 220, .external_lex_state = 16}, - [1320] = {.lex_state = 220, .external_lex_state = 22}, - [1321] = {.lex_state = 222}, - [1322] = {.lex_state = 220, .external_lex_state = 16}, - [1323] = {.lex_state = 116, .external_lex_state = 5}, - [1324] = {.lex_state = 220, .external_lex_state = 16}, - [1325] = {.lex_state = 220, .external_lex_state = 22}, - [1326] = {.lex_state = 204, .external_lex_state = 2}, - [1327] = {.lex_state = 127, .external_lex_state = 4}, - [1328] = {.lex_state = 131, .external_lex_state = 8}, - [1329] = {.lex_state = 56, .external_lex_state = 2}, - [1330] = {.lex_state = 83, .external_lex_state = 4}, - [1331] = {.lex_state = 114, .external_lex_state = 8}, - [1332] = {.lex_state = 220, .external_lex_state = 22}, - [1333] = {.lex_state = 204, .external_lex_state = 2}, - [1334] = {.lex_state = 127, .external_lex_state = 4}, - [1335] = {.lex_state = 131, .external_lex_state = 8}, - [1336] = {.lex_state = 116, .external_lex_state = 5}, - [1337] = {.lex_state = 220, .external_lex_state = 16}, - [1338] = {.lex_state = 116, .external_lex_state = 5}, - [1339] = {.lex_state = 220, .external_lex_state = 16}, - [1340] = {.lex_state = 116, .external_lex_state = 5}, - [1341] = {.lex_state = 227, .external_lex_state = 7}, - [1342] = {.lex_state = 125}, - [1343] = {.lex_state = 56}, - [1344] = {.lex_state = 73}, - [1345] = {.lex_state = 56}, - [1346] = {.lex_state = 73}, - [1347] = {.lex_state = 73}, - [1348] = {.lex_state = 227, .external_lex_state = 21}, - [1349] = {.lex_state = 245, .external_lex_state = 21}, - [1350] = {.lex_state = 227, .external_lex_state = 5}, - [1351] = {.lex_state = 227, .external_lex_state = 5}, - [1352] = {.lex_state = 227, .external_lex_state = 5}, - [1353] = {.lex_state = 227, .external_lex_state = 7}, - [1354] = {.lex_state = 116, .external_lex_state = 5}, - [1355] = {.lex_state = 133, .external_lex_state = 4}, - [1356] = {.lex_state = 218, .external_lex_state = 16}, - [1357] = {.lex_state = 62}, - [1358] = {.lex_state = 160, .external_lex_state = 16}, - [1359] = {.lex_state = 160, .external_lex_state = 16}, - [1360] = {.lex_state = 160, .external_lex_state = 16}, - [1361] = {.lex_state = 166, .external_lex_state = 17}, - [1362] = {.lex_state = 222}, - [1363] = {.lex_state = 220, .external_lex_state = 16}, - [1364] = {.lex_state = 166, .external_lex_state = 17}, - [1365] = {.lex_state = 222}, - [1366] = {.lex_state = 220, .external_lex_state = 16}, - [1367] = {.lex_state = 166, .external_lex_state = 17}, - [1368] = {.lex_state = 222}, - [1369] = {.lex_state = 220, .external_lex_state = 16}, - [1370] = {.lex_state = 189, .external_lex_state = 5}, - [1371] = {.lex_state = 133, .external_lex_state = 4}, - [1372] = {.lex_state = 62}, - [1373] = {.lex_state = 62}, - [1374] = {.lex_state = 195, .external_lex_state = 13}, - [1375] = {.lex_state = 195, .external_lex_state = 13}, - [1376] = {.lex_state = 195, .external_lex_state = 13}, - [1377] = {.lex_state = 152}, - [1378] = {.lex_state = 218, .external_lex_state = 16}, - [1379] = {.lex_state = 62}, - [1380] = {.lex_state = 160, .external_lex_state = 16}, - [1381] = {.lex_state = 160, .external_lex_state = 16}, - [1382] = {.lex_state = 160, .external_lex_state = 16}, - [1383] = {.lex_state = 195, .external_lex_state = 13}, - [1384] = {.lex_state = 222}, - [1385] = {.lex_state = 220, .external_lex_state = 16}, - [1386] = {.lex_state = 195, .external_lex_state = 13}, - [1387] = {.lex_state = 222}, - [1388] = {.lex_state = 220, .external_lex_state = 16}, - [1389] = {.lex_state = 195, .external_lex_state = 13}, - [1390] = {.lex_state = 222}, - [1391] = {.lex_state = 220, .external_lex_state = 16}, - [1392] = {.lex_state = 195, .external_lex_state = 13}, - [1393] = {.lex_state = 204, .external_lex_state = 2}, - [1394] = {.lex_state = 127, .external_lex_state = 4}, - [1395] = {.lex_state = 131, .external_lex_state = 8}, - [1396] = {.lex_state = 56, .external_lex_state = 2}, - [1397] = {.lex_state = 83, .external_lex_state = 4}, - [1398] = {.lex_state = 114, .external_lex_state = 8}, - [1399] = {.lex_state = 195, .external_lex_state = 13}, - [1400] = {.lex_state = 204, .external_lex_state = 2}, - [1401] = {.lex_state = 127, .external_lex_state = 4}, - [1402] = {.lex_state = 131, .external_lex_state = 8}, - [1403] = {.lex_state = 131, .external_lex_state = 19}, - [1404] = {.lex_state = 131, .external_lex_state = 19}, - [1405] = {.lex_state = 199, .external_lex_state = 22}, - [1406] = {.lex_state = 199, .external_lex_state = 22}, - [1407] = {.lex_state = 199, .external_lex_state = 16}, - [1408] = {.lex_state = 218, .external_lex_state = 16}, - [1409] = {.lex_state = 131, .external_lex_state = 19}, - [1410] = {.lex_state = 222}, - [1411] = {.lex_state = 220, .external_lex_state = 16}, - [1412] = {.lex_state = 131, .external_lex_state = 19}, - [1413] = {.lex_state = 222}, - [1414] = {.lex_state = 220, .external_lex_state = 16}, - [1415] = {.lex_state = 222}, - [1416] = {.lex_state = 220, .external_lex_state = 16}, - [1417] = {.lex_state = 220, .external_lex_state = 16}, - [1418] = {.lex_state = 131, .external_lex_state = 19}, - [1419] = {.lex_state = 220, .external_lex_state = 16}, - [1420] = {.lex_state = 131, .external_lex_state = 19}, - [1421] = {.lex_state = 220, .external_lex_state = 16}, - [1422] = {.lex_state = 131, .external_lex_state = 19}, - [1423] = {.lex_state = 204, .external_lex_state = 2}, - [1424] = {.lex_state = 56, .external_lex_state = 2}, - [1425] = {.lex_state = 131, .external_lex_state = 19}, - [1426] = {.lex_state = 204, .external_lex_state = 2}, - [1427] = {.lex_state = 199, .external_lex_state = 20}, - [1428] = {.lex_state = 133, .external_lex_state = 4}, - [1429] = {.lex_state = 208}, - [1430] = {.lex_state = 249}, - [1431] = {.lex_state = 73}, - [1432] = {.lex_state = 249, .external_lex_state = 13}, - [1433] = {.lex_state = 249, .external_lex_state = 13}, - [1434] = {.lex_state = 152}, - [1435] = {.lex_state = 91}, - [1436] = {.lex_state = 249, .external_lex_state = 13}, - [1437] = {.lex_state = 249, .external_lex_state = 13}, - [1438] = {.lex_state = 249, .external_lex_state = 13}, - [1439] = {.lex_state = 62}, - [1440] = {.lex_state = 158, .external_lex_state = 6}, - [1441] = {.lex_state = 160, .external_lex_state = 16}, - [1442] = {.lex_state = 160, .external_lex_state = 16}, - [1443] = {.lex_state = 160, .external_lex_state = 16}, - [1444] = {.lex_state = 127, .external_lex_state = 4}, - [1445] = {.lex_state = 131, .external_lex_state = 8}, - [1446] = {.lex_state = 56, .external_lex_state = 2}, - [1447] = {.lex_state = 83, .external_lex_state = 4}, - [1448] = {.lex_state = 114, .external_lex_state = 8}, - [1449] = {.lex_state = 56, .external_lex_state = 2}, - [1450] = {.lex_state = 127, .external_lex_state = 4}, - [1451] = {.lex_state = 131, .external_lex_state = 8}, - [1452] = {.lex_state = 56, .external_lex_state = 2}, - [1453] = {.lex_state = 247}, - [1454] = {.lex_state = 77}, - [1455] = {.lex_state = 210}, - [1456] = {.lex_state = 249}, - [1457] = {.lex_state = 235, .external_lex_state = 10}, - [1458] = {.lex_state = 235, .external_lex_state = 10}, - [1459] = {.lex_state = 199, .external_lex_state = 22}, - [1460] = {.lex_state = 199, .external_lex_state = 22}, - [1461] = {.lex_state = 199, .external_lex_state = 16}, - [1462] = {.lex_state = 218, .external_lex_state = 16}, - [1463] = {.lex_state = 235, .external_lex_state = 10}, - [1464] = {.lex_state = 222}, - [1465] = {.lex_state = 220, .external_lex_state = 16}, - [1466] = {.lex_state = 235, .external_lex_state = 10}, - [1467] = {.lex_state = 222}, - [1468] = {.lex_state = 220, .external_lex_state = 16}, - [1469] = {.lex_state = 222}, - [1470] = {.lex_state = 220, .external_lex_state = 16}, - [1471] = {.lex_state = 220, .external_lex_state = 16}, - [1472] = {.lex_state = 235, .external_lex_state = 10}, - [1473] = {.lex_state = 220, .external_lex_state = 16}, - [1474] = {.lex_state = 235, .external_lex_state = 10}, - [1475] = {.lex_state = 220, .external_lex_state = 16}, - [1476] = {.lex_state = 235, .external_lex_state = 10}, - [1477] = {.lex_state = 204, .external_lex_state = 2}, - [1478] = {.lex_state = 56, .external_lex_state = 2}, - [1479] = {.lex_state = 235, .external_lex_state = 10}, - [1480] = {.lex_state = 204, .external_lex_state = 2}, - [1481] = {.lex_state = 231}, - [1482] = {.lex_state = 123, .external_lex_state = 10}, - [1483] = {.lex_state = 133, .external_lex_state = 4}, - [1484] = {.lex_state = 133, .external_lex_state = 4}, - [1485] = {.lex_state = 56, .external_lex_state = 2}, - [1486] = {.lex_state = 56, .external_lex_state = 2}, - [1487] = {.lex_state = 133, .external_lex_state = 4}, - [1488] = {.lex_state = 73}, - [1489] = {.lex_state = 73}, - [1490] = {.lex_state = 163, .external_lex_state = 2}, - [1491] = {.lex_state = 251}, - [1492] = {.lex_state = 251, .external_lex_state = 13}, - [1493] = {.lex_state = 163, .external_lex_state = 2}, - [1494] = {.lex_state = 251}, - [1495] = {.lex_state = 133, .external_lex_state = 4}, - [1496] = {.lex_state = 73}, - [1497] = {.lex_state = 73}, - [1498] = {.lex_state = 133, .external_lex_state = 4}, - [1499] = {.lex_state = 73}, - [1500] = {.lex_state = 133, .external_lex_state = 4}, - [1501] = {.lex_state = 73}, - [1502] = {.lex_state = 133, .external_lex_state = 4}, - [1503] = {.lex_state = 73}, - [1504] = {.lex_state = 123, .external_lex_state = 10}, - [1505] = {.lex_state = 123, .external_lex_state = 10}, - [1506] = {.lex_state = 199, .external_lex_state = 22}, - [1507] = {.lex_state = 199, .external_lex_state = 22}, - [1508] = {.lex_state = 199, .external_lex_state = 16}, - [1509] = {.lex_state = 220, .external_lex_state = 16}, - [1510] = {.lex_state = 123, .external_lex_state = 10}, - [1511] = {.lex_state = 220, .external_lex_state = 16}, - [1512] = {.lex_state = 123, .external_lex_state = 10}, - [1513] = {.lex_state = 220, .external_lex_state = 16}, - [1514] = {.lex_state = 123, .external_lex_state = 10}, - [1515] = {.lex_state = 220, .external_lex_state = 16}, - [1516] = {.lex_state = 123, .external_lex_state = 10}, - [1517] = {.lex_state = 220, .external_lex_state = 16}, - [1518] = {.lex_state = 123, .external_lex_state = 10}, - [1519] = {.lex_state = 220, .external_lex_state = 16}, - [1520] = {.lex_state = 123, .external_lex_state = 10}, - [1521] = {.lex_state = 123, .external_lex_state = 10}, - [1522] = {.lex_state = 133, .external_lex_state = 4}, - [1523] = {.lex_state = 133, .external_lex_state = 10}, - [1524] = {.lex_state = 133, .external_lex_state = 10}, - [1525] = {.lex_state = 133, .external_lex_state = 4}, - [1526] = {.lex_state = 133, .external_lex_state = 10}, - [1527] = {.lex_state = 131, .external_lex_state = 19}, - [1528] = {.lex_state = 241, .external_lex_state = 21}, - [1529] = {.lex_state = 73}, - [1530] = {.lex_state = 133, .external_lex_state = 10}, - [1531] = {.lex_state = 133, .external_lex_state = 10}, - [1532] = {.lex_state = 73}, - [1533] = {.lex_state = 206, .external_lex_state = 23}, - [1534] = {.lex_state = 206, .external_lex_state = 23}, - [1535] = {.lex_state = 206, .external_lex_state = 23}, - [1536] = {.lex_state = 206, .external_lex_state = 23}, - [1537] = {.lex_state = 206, .external_lex_state = 21}, - [1538] = {.lex_state = 206, .external_lex_state = 5}, - [1539] = {.lex_state = 73, .external_lex_state = 2}, - [1540] = {.lex_state = 135, .external_lex_state = 11}, - [1541] = {.lex_state = 135, .external_lex_state = 11}, - [1542] = {.lex_state = 199, .external_lex_state = 22}, - [1543] = {.lex_state = 199, .external_lex_state = 22}, - [1544] = {.lex_state = 199, .external_lex_state = 16}, - [1545] = {.lex_state = 220, .external_lex_state = 16}, - [1546] = {.lex_state = 135, .external_lex_state = 11}, - [1547] = {.lex_state = 220, .external_lex_state = 16}, - [1548] = {.lex_state = 135, .external_lex_state = 11}, - [1549] = {.lex_state = 220, .external_lex_state = 16}, - [1550] = {.lex_state = 135, .external_lex_state = 11}, - [1551] = {.lex_state = 220, .external_lex_state = 16}, - [1552] = {.lex_state = 135, .external_lex_state = 11}, - [1553] = {.lex_state = 220, .external_lex_state = 16}, - [1554] = {.lex_state = 135, .external_lex_state = 11}, - [1555] = {.lex_state = 220, .external_lex_state = 16}, - [1556] = {.lex_state = 135, .external_lex_state = 11}, - [1557] = {.lex_state = 135, .external_lex_state = 11}, - [1558] = {.lex_state = 189, .external_lex_state = 23}, - [1559] = {.lex_state = 189, .external_lex_state = 23}, - [1560] = {.lex_state = 229, .external_lex_state = 21}, - [1561] = {.lex_state = 73}, - [1562] = {.lex_state = 189, .external_lex_state = 23}, - [1563] = {.lex_state = 229, .external_lex_state = 23}, - [1564] = {.lex_state = 152}, - [1565] = {.lex_state = 91}, - [1566] = {.lex_state = 229, .external_lex_state = 23}, - [1567] = {.lex_state = 229, .external_lex_state = 23}, - [1568] = {.lex_state = 229, .external_lex_state = 23}, - [1569] = {.lex_state = 62}, - [1570] = {.lex_state = 158, .external_lex_state = 6}, - [1571] = {.lex_state = 160, .external_lex_state = 16}, - [1572] = {.lex_state = 160, .external_lex_state = 16}, - [1573] = {.lex_state = 160, .external_lex_state = 16}, - [1574] = {.lex_state = 127, .external_lex_state = 4}, - [1575] = {.lex_state = 131, .external_lex_state = 8}, - [1576] = {.lex_state = 56, .external_lex_state = 2}, - [1577] = {.lex_state = 83, .external_lex_state = 4}, - [1578] = {.lex_state = 114, .external_lex_state = 8}, - [1579] = {.lex_state = 56, .external_lex_state = 2}, - [1580] = {.lex_state = 127, .external_lex_state = 4}, - [1581] = {.lex_state = 131, .external_lex_state = 8}, - [1582] = {.lex_state = 56, .external_lex_state = 2}, - [1583] = {.lex_state = 215, .external_lex_state = 13}, - [1584] = {.lex_state = 215, .external_lex_state = 13}, - [1585] = {.lex_state = 199, .external_lex_state = 22}, - [1586] = {.lex_state = 199, .external_lex_state = 22}, - [1587] = {.lex_state = 199, .external_lex_state = 16}, - [1588] = {.lex_state = 220, .external_lex_state = 16}, - [1589] = {.lex_state = 215, .external_lex_state = 13}, - [1590] = {.lex_state = 220, .external_lex_state = 16}, - [1591] = {.lex_state = 215, .external_lex_state = 13}, - [1592] = {.lex_state = 220, .external_lex_state = 16}, - [1593] = {.lex_state = 215, .external_lex_state = 13}, - [1594] = {.lex_state = 220, .external_lex_state = 16}, - [1595] = {.lex_state = 215, .external_lex_state = 13}, - [1596] = {.lex_state = 220, .external_lex_state = 16}, - [1597] = {.lex_state = 215, .external_lex_state = 13}, - [1598] = {.lex_state = 220, .external_lex_state = 16}, - [1599] = {.lex_state = 215, .external_lex_state = 13}, - [1600] = {.lex_state = 215, .external_lex_state = 13}, - [1601] = {.lex_state = 127, .external_lex_state = 3}, - [1602] = {.lex_state = 127, .external_lex_state = 14}, - [1603] = {.lex_state = 127, .external_lex_state = 14}, - [1604] = {.lex_state = 199, .external_lex_state = 22}, - [1605] = {.lex_state = 199, .external_lex_state = 22}, - [1606] = {.lex_state = 199, .external_lex_state = 16}, - [1607] = {.lex_state = 220, .external_lex_state = 16}, - [1608] = {.lex_state = 127, .external_lex_state = 14}, - [1609] = {.lex_state = 220, .external_lex_state = 16}, - [1610] = {.lex_state = 127, .external_lex_state = 14}, - [1611] = {.lex_state = 220, .external_lex_state = 16}, - [1612] = {.lex_state = 127, .external_lex_state = 14}, - [1613] = {.lex_state = 220, .external_lex_state = 16}, - [1614] = {.lex_state = 127, .external_lex_state = 14}, - [1615] = {.lex_state = 220, .external_lex_state = 16}, - [1616] = {.lex_state = 127, .external_lex_state = 14}, - [1617] = {.lex_state = 220, .external_lex_state = 16}, - [1618] = {.lex_state = 127, .external_lex_state = 14}, - [1619] = {.lex_state = 127, .external_lex_state = 14}, - [1620] = {.lex_state = 127, .external_lex_state = 10}, - [1621] = {.lex_state = 127, .external_lex_state = 10}, - [1622] = {.lex_state = 199, .external_lex_state = 22}, - [1623] = {.lex_state = 199, .external_lex_state = 22}, - [1624] = {.lex_state = 199, .external_lex_state = 16}, - [1625] = {.lex_state = 220, .external_lex_state = 16}, - [1626] = {.lex_state = 127, .external_lex_state = 10}, - [1627] = {.lex_state = 220, .external_lex_state = 16}, - [1628] = {.lex_state = 127, .external_lex_state = 10}, - [1629] = {.lex_state = 220, .external_lex_state = 16}, - [1630] = {.lex_state = 127, .external_lex_state = 10}, - [1631] = {.lex_state = 220, .external_lex_state = 16}, - [1632] = {.lex_state = 127, .external_lex_state = 10}, - [1633] = {.lex_state = 220, .external_lex_state = 16}, - [1634] = {.lex_state = 127, .external_lex_state = 10}, - [1635] = {.lex_state = 220, .external_lex_state = 16}, - [1636] = {.lex_state = 127, .external_lex_state = 10}, - [1637] = {.lex_state = 127, .external_lex_state = 10}, - [1638] = {.lex_state = 73, .external_lex_state = 15}, - [1639] = {.lex_state = 73, .external_lex_state = 15}, - [1640] = {.lex_state = 199, .external_lex_state = 22}, - [1641] = {.lex_state = 199, .external_lex_state = 22}, - [1642] = {.lex_state = 199, .external_lex_state = 16}, - [1643] = {.lex_state = 220, .external_lex_state = 16}, - [1644] = {.lex_state = 73, .external_lex_state = 15}, - [1645] = {.lex_state = 220, .external_lex_state = 16}, - [1646] = {.lex_state = 73, .external_lex_state = 15}, - [1647] = {.lex_state = 220, .external_lex_state = 16}, - [1648] = {.lex_state = 73, .external_lex_state = 15}, - [1649] = {.lex_state = 220, .external_lex_state = 16}, - [1650] = {.lex_state = 73, .external_lex_state = 15}, - [1651] = {.lex_state = 220, .external_lex_state = 16}, - [1652] = {.lex_state = 73, .external_lex_state = 15}, - [1653] = {.lex_state = 220, .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 = 199, .external_lex_state = 22}, - [1659] = {.lex_state = 199, .external_lex_state = 22}, - [1660] = {.lex_state = 199, .external_lex_state = 16}, - [1661] = {.lex_state = 220, .external_lex_state = 16}, - [1662] = {.lex_state = 91, .external_lex_state = 13}, - [1663] = {.lex_state = 220, .external_lex_state = 16}, - [1664] = {.lex_state = 91, .external_lex_state = 13}, - [1665] = {.lex_state = 220, .external_lex_state = 16}, - [1666] = {.lex_state = 91, .external_lex_state = 13}, - [1667] = {.lex_state = 220, .external_lex_state = 16}, - [1668] = {.lex_state = 91, .external_lex_state = 13}, - [1669] = {.lex_state = 220, .external_lex_state = 16}, - [1670] = {.lex_state = 91, .external_lex_state = 13}, - [1671] = {.lex_state = 220, .external_lex_state = 16}, - [1672] = {.lex_state = 91, .external_lex_state = 13}, - [1673] = {.lex_state = 160, .external_lex_state = 22}, - [1674] = {.lex_state = 160, .external_lex_state = 16}, - [1675] = {.lex_state = 160, .external_lex_state = 22}, - [1676] = {.lex_state = 160, .external_lex_state = 16}, - [1677] = {.lex_state = 199, .external_lex_state = 22}, - [1678] = {.lex_state = 199, .external_lex_state = 22}, - [1679] = {.lex_state = 199, .external_lex_state = 22}, - [1680] = {.lex_state = 152}, - [1681] = {.lex_state = 218, .external_lex_state = 16}, - [1682] = {.lex_state = 62}, - [1683] = {.lex_state = 160, .external_lex_state = 16}, - [1684] = {.lex_state = 160, .external_lex_state = 16}, - [1685] = {.lex_state = 160, .external_lex_state = 16}, - [1686] = {.lex_state = 199, .external_lex_state = 22}, - [1687] = {.lex_state = 222}, - [1688] = {.lex_state = 220, .external_lex_state = 16}, - [1689] = {.lex_state = 199, .external_lex_state = 22}, - [1690] = {.lex_state = 222}, - [1691] = {.lex_state = 220, .external_lex_state = 16}, - [1692] = {.lex_state = 199, .external_lex_state = 22}, - [1693] = {.lex_state = 222}, - [1694] = {.lex_state = 220, .external_lex_state = 16}, - [1695] = {.lex_state = 199, .external_lex_state = 22}, - [1696] = {.lex_state = 204, .external_lex_state = 2}, - [1697] = {.lex_state = 127, .external_lex_state = 4}, - [1698] = {.lex_state = 131, .external_lex_state = 8}, - [1699] = {.lex_state = 56, .external_lex_state = 2}, - [1700] = {.lex_state = 83, .external_lex_state = 4}, - [1701] = {.lex_state = 114, .external_lex_state = 8}, - [1702] = {.lex_state = 199, .external_lex_state = 22}, - [1703] = {.lex_state = 204, .external_lex_state = 2}, - [1704] = {.lex_state = 127, .external_lex_state = 4}, - [1705] = {.lex_state = 131, .external_lex_state = 8}, - [1706] = {.lex_state = 116, .external_lex_state = 5}, - [1707] = {.lex_state = 116, .external_lex_state = 5}, - [1708] = {.lex_state = 116, .external_lex_state = 5}, - [1709] = {.lex_state = 220, .external_lex_state = 16}, - [1710] = {.lex_state = 116, .external_lex_state = 5}, - [1711] = {.lex_state = 220, .external_lex_state = 16}, - [1712] = {.lex_state = 116, .external_lex_state = 5}, - [1713] = {.lex_state = 220, .external_lex_state = 16}, - [1714] = {.lex_state = 220, .external_lex_state = 22}, - [1715] = {.lex_state = 220, .external_lex_state = 22}, - [1716] = {.lex_state = 199, .external_lex_state = 22}, - [1717] = {.lex_state = 199, .external_lex_state = 22}, - [1718] = {.lex_state = 199, .external_lex_state = 16}, - [1719] = {.lex_state = 218, .external_lex_state = 16}, - [1720] = {.lex_state = 220, .external_lex_state = 22}, - [1721] = {.lex_state = 222}, - [1722] = {.lex_state = 220, .external_lex_state = 16}, - [1723] = {.lex_state = 220, .external_lex_state = 22}, - [1724] = {.lex_state = 222}, - [1725] = {.lex_state = 220, .external_lex_state = 16}, - [1726] = {.lex_state = 222}, - [1727] = {.lex_state = 220, .external_lex_state = 16}, - [1728] = {.lex_state = 220, .external_lex_state = 16}, - [1729] = {.lex_state = 220, .external_lex_state = 22}, - [1730] = {.lex_state = 220, .external_lex_state = 16}, - [1731] = {.lex_state = 220, .external_lex_state = 22}, - [1732] = {.lex_state = 220, .external_lex_state = 16}, - [1733] = {.lex_state = 116, .external_lex_state = 5}, - [1734] = {.lex_state = 220, .external_lex_state = 22}, - [1735] = {.lex_state = 204, .external_lex_state = 2}, - [1736] = {.lex_state = 56, .external_lex_state = 2}, - [1737] = {.lex_state = 220, .external_lex_state = 22}, - [1738] = {.lex_state = 204, .external_lex_state = 2}, - [1739] = {.lex_state = 116, .external_lex_state = 5}, - [1740] = {.lex_state = 116, .external_lex_state = 5}, - [1741] = {.lex_state = 245, .external_lex_state = 21}, - [1742] = {.lex_state = 73}, - [1743] = {.lex_state = 133, .external_lex_state = 10}, - [1744] = {.lex_state = 133, .external_lex_state = 10}, - [1745] = {.lex_state = 73}, - [1746] = {.lex_state = 227, .external_lex_state = 23}, - [1747] = {.lex_state = 227, .external_lex_state = 23}, - [1748] = {.lex_state = 227, .external_lex_state = 23}, - [1749] = {.lex_state = 227, .external_lex_state = 23}, - [1750] = {.lex_state = 227, .external_lex_state = 21}, - [1751] = {.lex_state = 227, .external_lex_state = 5}, - [1752] = {.lex_state = 166, .external_lex_state = 17}, - [1753] = {.lex_state = 199, .external_lex_state = 22}, - [1754] = {.lex_state = 199, .external_lex_state = 22}, - [1755] = {.lex_state = 199, .external_lex_state = 16}, - [1756] = {.lex_state = 218, .external_lex_state = 16}, - [1757] = {.lex_state = 166, .external_lex_state = 17}, - [1758] = {.lex_state = 222}, - [1759] = {.lex_state = 220, .external_lex_state = 16}, - [1760] = {.lex_state = 166, .external_lex_state = 17}, - [1761] = {.lex_state = 222}, - [1762] = {.lex_state = 220, .external_lex_state = 16}, - [1763] = {.lex_state = 222}, - [1764] = {.lex_state = 220, .external_lex_state = 16}, - [1765] = {.lex_state = 220, .external_lex_state = 16}, - [1766] = {.lex_state = 166, .external_lex_state = 17}, - [1767] = {.lex_state = 220, .external_lex_state = 16}, - [1768] = {.lex_state = 166, .external_lex_state = 17}, - [1769] = {.lex_state = 220, .external_lex_state = 16}, - [1770] = {.lex_state = 195, .external_lex_state = 13}, - [1771] = {.lex_state = 195, .external_lex_state = 13}, - [1772] = {.lex_state = 199, .external_lex_state = 22}, - [1773] = {.lex_state = 199, .external_lex_state = 22}, - [1774] = {.lex_state = 199, .external_lex_state = 16}, - [1775] = {.lex_state = 218, .external_lex_state = 16}, - [1776] = {.lex_state = 195, .external_lex_state = 13}, - [1777] = {.lex_state = 222}, - [1778] = {.lex_state = 220, .external_lex_state = 16}, - [1779] = {.lex_state = 195, .external_lex_state = 13}, - [1780] = {.lex_state = 222}, - [1781] = {.lex_state = 220, .external_lex_state = 16}, - [1782] = {.lex_state = 222}, - [1783] = {.lex_state = 220, .external_lex_state = 16}, - [1784] = {.lex_state = 220, .external_lex_state = 16}, - [1785] = {.lex_state = 195, .external_lex_state = 13}, - [1786] = {.lex_state = 220, .external_lex_state = 16}, - [1787] = {.lex_state = 195, .external_lex_state = 13}, - [1788] = {.lex_state = 220, .external_lex_state = 16}, - [1789] = {.lex_state = 195, .external_lex_state = 13}, - [1790] = {.lex_state = 204, .external_lex_state = 2}, - [1791] = {.lex_state = 56, .external_lex_state = 2}, - [1792] = {.lex_state = 195, .external_lex_state = 13}, - [1793] = {.lex_state = 204, .external_lex_state = 2}, - [1794] = {.lex_state = 131, .external_lex_state = 19}, - [1795] = {.lex_state = 131, .external_lex_state = 19}, - [1796] = {.lex_state = 199, .external_lex_state = 22}, - [1797] = {.lex_state = 199, .external_lex_state = 22}, - [1798] = {.lex_state = 199, .external_lex_state = 16}, - [1799] = {.lex_state = 220, .external_lex_state = 16}, - [1800] = {.lex_state = 131, .external_lex_state = 19}, - [1801] = {.lex_state = 220, .external_lex_state = 16}, - [1802] = {.lex_state = 131, .external_lex_state = 19}, - [1803] = {.lex_state = 220, .external_lex_state = 16}, - [1804] = {.lex_state = 131, .external_lex_state = 19}, - [1805] = {.lex_state = 220, .external_lex_state = 16}, - [1806] = {.lex_state = 131, .external_lex_state = 19}, - [1807] = {.lex_state = 220, .external_lex_state = 16}, - [1808] = {.lex_state = 131, .external_lex_state = 19}, - [1809] = {.lex_state = 220, .external_lex_state = 16}, - [1810] = {.lex_state = 131, .external_lex_state = 19}, - [1811] = {.lex_state = 131, .external_lex_state = 19}, - [1812] = {.lex_state = 133, .external_lex_state = 4}, - [1813] = {.lex_state = 199, .external_lex_state = 20}, - [1814] = {.lex_state = 249}, - [1815] = {.lex_state = 249, .external_lex_state = 13}, - [1816] = {.lex_state = 249, .external_lex_state = 13}, - [1817] = {.lex_state = 249, .external_lex_state = 13}, - [1818] = {.lex_state = 152}, - [1819] = {.lex_state = 218, .external_lex_state = 16}, - [1820] = {.lex_state = 62}, - [1821] = {.lex_state = 160, .external_lex_state = 16}, - [1822] = {.lex_state = 160, .external_lex_state = 16}, - [1823] = {.lex_state = 160, .external_lex_state = 16}, - [1824] = {.lex_state = 249, .external_lex_state = 13}, - [1825] = {.lex_state = 222}, - [1826] = {.lex_state = 220, .external_lex_state = 16}, - [1827] = {.lex_state = 249, .external_lex_state = 13}, - [1828] = {.lex_state = 222}, - [1829] = {.lex_state = 220, .external_lex_state = 16}, - [1830] = {.lex_state = 249, .external_lex_state = 13}, - [1831] = {.lex_state = 222}, - [1832] = {.lex_state = 220, .external_lex_state = 16}, - [1833] = {.lex_state = 249, .external_lex_state = 13}, - [1834] = {.lex_state = 204, .external_lex_state = 2}, - [1835] = {.lex_state = 127, .external_lex_state = 4}, - [1836] = {.lex_state = 131, .external_lex_state = 8}, - [1837] = {.lex_state = 56, .external_lex_state = 2}, - [1838] = {.lex_state = 83, .external_lex_state = 4}, - [1839] = {.lex_state = 114, .external_lex_state = 8}, - [1840] = {.lex_state = 249, .external_lex_state = 13}, - [1841] = {.lex_state = 204, .external_lex_state = 2}, - [1842] = {.lex_state = 127, .external_lex_state = 4}, - [1843] = {.lex_state = 131, .external_lex_state = 8}, - [1844] = {.lex_state = 133, .external_lex_state = 4}, - [1845] = {.lex_state = 249}, - [1846] = {.lex_state = 249}, - [1847] = {.lex_state = 247}, - [1848] = {.lex_state = 235, .external_lex_state = 10}, - [1849] = {.lex_state = 235, .external_lex_state = 10}, - [1850] = {.lex_state = 199, .external_lex_state = 22}, - [1851] = {.lex_state = 199, .external_lex_state = 22}, - [1852] = {.lex_state = 199, .external_lex_state = 16}, - [1853] = {.lex_state = 220, .external_lex_state = 16}, - [1854] = {.lex_state = 235, .external_lex_state = 10}, - [1855] = {.lex_state = 220, .external_lex_state = 16}, - [1856] = {.lex_state = 235, .external_lex_state = 10}, - [1857] = {.lex_state = 220, .external_lex_state = 16}, - [1858] = {.lex_state = 235, .external_lex_state = 10}, - [1859] = {.lex_state = 220, .external_lex_state = 16}, - [1860] = {.lex_state = 235, .external_lex_state = 10}, - [1861] = {.lex_state = 220, .external_lex_state = 16}, - [1862] = {.lex_state = 235, .external_lex_state = 10}, - [1863] = {.lex_state = 220, .external_lex_state = 16}, - [1864] = {.lex_state = 235, .external_lex_state = 10}, - [1865] = {.lex_state = 235, .external_lex_state = 10}, - [1866] = {.lex_state = 249}, - [1867] = {.lex_state = 56, .external_lex_state = 2}, - [1868] = {.lex_state = 133, .external_lex_state = 4}, - [1869] = {.lex_state = 251, .external_lex_state = 13}, - [1870] = {.lex_state = 251, .external_lex_state = 13}, - [1871] = {.lex_state = 251}, - [1872] = {.lex_state = 62}, - [1873] = {.lex_state = 56, .external_lex_state = 2}, - [1874] = {.lex_state = 73}, - [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 = 110, .external_lex_state = 5}, - [1884] = {.lex_state = 133, .external_lex_state = 4}, - [1885] = {.lex_state = 88, .external_lex_state = 7}, - [1886] = {.lex_state = 114, .external_lex_state = 8}, - [1887] = {.lex_state = 62}, - [1888] = {.lex_state = 163, .external_lex_state = 2}, - [1889] = {.lex_state = 73, .external_lex_state = 2}, - [1890] = {.lex_state = 163, .external_lex_state = 2}, - [1891] = {.lex_state = 251}, - [1892] = {.lex_state = 251, .external_lex_state = 13}, - [1893] = {.lex_state = 73}, - [1894] = {.lex_state = 133, .external_lex_state = 4}, - [1895] = {.lex_state = 114, .external_lex_state = 8}, - [1896] = {.lex_state = 163, .external_lex_state = 2}, - [1897] = {.lex_state = 163, .external_lex_state = 2}, - [1898] = {.lex_state = 133, .external_lex_state = 4}, - [1899] = {.lex_state = 251, .external_lex_state = 13}, - [1900] = {.lex_state = 251, .external_lex_state = 13}, - [1901] = {.lex_state = 251}, - [1902] = {.lex_state = 73}, - [1903] = {.lex_state = 133, .external_lex_state = 4}, - [1904] = {.lex_state = 73}, - [1905] = {.lex_state = 123, .external_lex_state = 10}, - [1906] = {.lex_state = 123, .external_lex_state = 10}, - [1907] = {.lex_state = 123, .external_lex_state = 10}, - [1908] = {.lex_state = 220, .external_lex_state = 16}, - [1909] = {.lex_state = 123, .external_lex_state = 10}, - [1910] = {.lex_state = 220, .external_lex_state = 16}, - [1911] = {.lex_state = 123, .external_lex_state = 10}, - [1912] = {.lex_state = 220, .external_lex_state = 16}, - [1913] = {.lex_state = 123, .external_lex_state = 10}, - [1914] = {.lex_state = 123, .external_lex_state = 10}, - [1915] = {.lex_state = 123, .external_lex_state = 10}, - [1916] = {.lex_state = 133, .external_lex_state = 10}, - [1917] = {.lex_state = 133, .external_lex_state = 10}, - [1918] = {.lex_state = 133, .external_lex_state = 10}, - [1919] = {.lex_state = 133, .external_lex_state = 10}, - [1920] = {.lex_state = 206, .external_lex_state = 23}, - [1921] = {.lex_state = 206, .external_lex_state = 23}, - [1922] = {.lex_state = 206, .external_lex_state = 23}, - [1923] = {.lex_state = 135, .external_lex_state = 11}, - [1924] = {.lex_state = 135, .external_lex_state = 11}, - [1925] = {.lex_state = 135, .external_lex_state = 11}, - [1926] = {.lex_state = 220, .external_lex_state = 16}, - [1927] = {.lex_state = 135, .external_lex_state = 11}, - [1928] = {.lex_state = 220, .external_lex_state = 16}, - [1929] = {.lex_state = 135, .external_lex_state = 11}, - [1930] = {.lex_state = 220, .external_lex_state = 16}, - [1931] = {.lex_state = 135, .external_lex_state = 11}, - [1932] = {.lex_state = 135, .external_lex_state = 11}, - [1933] = {.lex_state = 135, .external_lex_state = 11}, - [1934] = {.lex_state = 229, .external_lex_state = 23}, - [1935] = {.lex_state = 189, .external_lex_state = 23}, - [1936] = {.lex_state = 229, .external_lex_state = 23}, - [1937] = {.lex_state = 152}, - [1938] = {.lex_state = 218, .external_lex_state = 16}, - [1939] = {.lex_state = 62}, - [1940] = {.lex_state = 160, .external_lex_state = 16}, - [1941] = {.lex_state = 160, .external_lex_state = 16}, - [1942] = {.lex_state = 160, .external_lex_state = 16}, - [1943] = {.lex_state = 229, .external_lex_state = 23}, - [1944] = {.lex_state = 222}, - [1945] = {.lex_state = 220, .external_lex_state = 16}, - [1946] = {.lex_state = 229, .external_lex_state = 23}, - [1947] = {.lex_state = 222}, - [1948] = {.lex_state = 220, .external_lex_state = 16}, - [1949] = {.lex_state = 229, .external_lex_state = 23}, - [1950] = {.lex_state = 222}, - [1951] = {.lex_state = 220, .external_lex_state = 16}, - [1952] = {.lex_state = 229, .external_lex_state = 23}, - [1953] = {.lex_state = 204, .external_lex_state = 2}, - [1954] = {.lex_state = 127, .external_lex_state = 4}, - [1955] = {.lex_state = 131, .external_lex_state = 8}, - [1956] = {.lex_state = 56, .external_lex_state = 2}, - [1957] = {.lex_state = 83, .external_lex_state = 4}, - [1958] = {.lex_state = 114, .external_lex_state = 8}, - [1959] = {.lex_state = 229, .external_lex_state = 23}, - [1960] = {.lex_state = 204, .external_lex_state = 2}, - [1961] = {.lex_state = 127, .external_lex_state = 4}, - [1962] = {.lex_state = 131, .external_lex_state = 8}, - [1963] = {.lex_state = 215, .external_lex_state = 13}, - [1964] = {.lex_state = 215, .external_lex_state = 13}, - [1965] = {.lex_state = 215, .external_lex_state = 13}, - [1966] = {.lex_state = 220, .external_lex_state = 16}, - [1967] = {.lex_state = 215, .external_lex_state = 13}, - [1968] = {.lex_state = 220, .external_lex_state = 16}, - [1969] = {.lex_state = 215, .external_lex_state = 13}, - [1970] = {.lex_state = 220, .external_lex_state = 16}, - [1971] = {.lex_state = 215, .external_lex_state = 13}, - [1972] = {.lex_state = 215, .external_lex_state = 13}, - [1973] = {.lex_state = 215, .external_lex_state = 13}, - [1974] = {.lex_state = 127, .external_lex_state = 14}, - [1975] = {.lex_state = 127, .external_lex_state = 14}, - [1976] = {.lex_state = 127, .external_lex_state = 14}, - [1977] = {.lex_state = 220, .external_lex_state = 16}, - [1978] = {.lex_state = 127, .external_lex_state = 14}, - [1979] = {.lex_state = 220, .external_lex_state = 16}, - [1980] = {.lex_state = 127, .external_lex_state = 14}, - [1981] = {.lex_state = 220, .external_lex_state = 16}, - [1982] = {.lex_state = 127, .external_lex_state = 14}, - [1983] = {.lex_state = 127, .external_lex_state = 14}, - [1984] = {.lex_state = 127, .external_lex_state = 14}, - [1985] = {.lex_state = 127, .external_lex_state = 10}, - [1986] = {.lex_state = 127, .external_lex_state = 10}, - [1987] = {.lex_state = 127, .external_lex_state = 10}, - [1988] = {.lex_state = 220, .external_lex_state = 16}, - [1989] = {.lex_state = 127, .external_lex_state = 10}, - [1990] = {.lex_state = 220, .external_lex_state = 16}, - [1991] = {.lex_state = 127, .external_lex_state = 10}, - [1992] = {.lex_state = 220, .external_lex_state = 16}, - [1993] = {.lex_state = 127, .external_lex_state = 10}, - [1994] = {.lex_state = 127, .external_lex_state = 10}, - [1995] = {.lex_state = 127, .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 = 220, .external_lex_state = 16}, - [2000] = {.lex_state = 73, .external_lex_state = 15}, - [2001] = {.lex_state = 220, .external_lex_state = 16}, - [2002] = {.lex_state = 73, .external_lex_state = 15}, - [2003] = {.lex_state = 220, .external_lex_state = 16}, - [2004] = {.lex_state = 73, .external_lex_state = 15}, - [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 = 220, .external_lex_state = 16}, - [2011] = {.lex_state = 91, .external_lex_state = 13}, - [2012] = {.lex_state = 220, .external_lex_state = 16}, - [2013] = {.lex_state = 91, .external_lex_state = 13}, - [2014] = {.lex_state = 220, .external_lex_state = 16}, - [2015] = {.lex_state = 91, .external_lex_state = 13}, - [2016] = {.lex_state = 91, .external_lex_state = 13}, - [2017] = {.lex_state = 91, .external_lex_state = 13}, - [2018] = {.lex_state = 160, .external_lex_state = 16}, - [2019] = {.lex_state = 160, .external_lex_state = 16}, - [2020] = {.lex_state = 199, .external_lex_state = 22}, - [2021] = {.lex_state = 199, .external_lex_state = 22}, - [2022] = {.lex_state = 199, .external_lex_state = 22}, - [2023] = {.lex_state = 199, .external_lex_state = 22}, - [2024] = {.lex_state = 199, .external_lex_state = 16}, - [2025] = {.lex_state = 218, .external_lex_state = 16}, - [2026] = {.lex_state = 199, .external_lex_state = 22}, - [2027] = {.lex_state = 222}, - [2028] = {.lex_state = 220, .external_lex_state = 16}, - [2029] = {.lex_state = 199, .external_lex_state = 22}, - [2030] = {.lex_state = 222}, - [2031] = {.lex_state = 220, .external_lex_state = 16}, - [2032] = {.lex_state = 222}, - [2033] = {.lex_state = 220, .external_lex_state = 16}, - [2034] = {.lex_state = 220, .external_lex_state = 16}, - [2035] = {.lex_state = 199, .external_lex_state = 22}, - [2036] = {.lex_state = 220, .external_lex_state = 16}, - [2037] = {.lex_state = 199, .external_lex_state = 22}, - [2038] = {.lex_state = 220, .external_lex_state = 16}, - [2039] = {.lex_state = 199, .external_lex_state = 22}, - [2040] = {.lex_state = 204, .external_lex_state = 2}, - [2041] = {.lex_state = 56, .external_lex_state = 2}, - [2042] = {.lex_state = 199, .external_lex_state = 22}, - [2043] = {.lex_state = 204, .external_lex_state = 2}, - [2044] = {.lex_state = 116, .external_lex_state = 5}, - [2045] = {.lex_state = 116, .external_lex_state = 5}, - [2046] = {.lex_state = 116, .external_lex_state = 5}, - [2047] = {.lex_state = 220, .external_lex_state = 22}, - [2048] = {.lex_state = 220, .external_lex_state = 22}, - [2049] = {.lex_state = 199, .external_lex_state = 22}, - [2050] = {.lex_state = 199, .external_lex_state = 22}, - [2051] = {.lex_state = 199, .external_lex_state = 16}, - [2052] = {.lex_state = 220, .external_lex_state = 16}, - [2053] = {.lex_state = 220, .external_lex_state = 22}, - [2054] = {.lex_state = 220, .external_lex_state = 16}, - [2055] = {.lex_state = 220, .external_lex_state = 22}, - [2056] = {.lex_state = 220, .external_lex_state = 16}, - [2057] = {.lex_state = 220, .external_lex_state = 22}, - [2058] = {.lex_state = 220, .external_lex_state = 16}, - [2059] = {.lex_state = 220, .external_lex_state = 22}, - [2060] = {.lex_state = 220, .external_lex_state = 16}, - [2061] = {.lex_state = 220, .external_lex_state = 22}, - [2062] = {.lex_state = 220, .external_lex_state = 16}, - [2063] = {.lex_state = 220, .external_lex_state = 22}, - [2064] = {.lex_state = 220, .external_lex_state = 22}, - [2065] = {.lex_state = 133, .external_lex_state = 10}, - [2066] = {.lex_state = 133, .external_lex_state = 10}, - [2067] = {.lex_state = 133, .external_lex_state = 10}, - [2068] = {.lex_state = 227, .external_lex_state = 23}, - [2069] = {.lex_state = 227, .external_lex_state = 23}, - [2070] = {.lex_state = 227, .external_lex_state = 23}, - [2071] = {.lex_state = 166, .external_lex_state = 17}, - [2072] = {.lex_state = 166, .external_lex_state = 17}, - [2073] = {.lex_state = 199, .external_lex_state = 22}, - [2074] = {.lex_state = 199, .external_lex_state = 22}, - [2075] = {.lex_state = 199, .external_lex_state = 16}, - [2076] = {.lex_state = 220, .external_lex_state = 16}, - [2077] = {.lex_state = 166, .external_lex_state = 17}, - [2078] = {.lex_state = 220, .external_lex_state = 16}, - [2079] = {.lex_state = 166, .external_lex_state = 17}, - [2080] = {.lex_state = 220, .external_lex_state = 16}, - [2081] = {.lex_state = 166, .external_lex_state = 17}, - [2082] = {.lex_state = 220, .external_lex_state = 16}, - [2083] = {.lex_state = 166, .external_lex_state = 17}, - [2084] = {.lex_state = 220, .external_lex_state = 16}, - [2085] = {.lex_state = 166, .external_lex_state = 17}, - [2086] = {.lex_state = 220, .external_lex_state = 16}, - [2087] = {.lex_state = 195, .external_lex_state = 13}, - [2088] = {.lex_state = 195, .external_lex_state = 13}, - [2089] = {.lex_state = 199, .external_lex_state = 22}, - [2090] = {.lex_state = 199, .external_lex_state = 22}, - [2091] = {.lex_state = 199, .external_lex_state = 16}, - [2092] = {.lex_state = 220, .external_lex_state = 16}, - [2093] = {.lex_state = 195, .external_lex_state = 13}, - [2094] = {.lex_state = 220, .external_lex_state = 16}, - [2095] = {.lex_state = 195, .external_lex_state = 13}, - [2096] = {.lex_state = 220, .external_lex_state = 16}, - [2097] = {.lex_state = 195, .external_lex_state = 13}, - [2098] = {.lex_state = 220, .external_lex_state = 16}, - [2099] = {.lex_state = 195, .external_lex_state = 13}, - [2100] = {.lex_state = 220, .external_lex_state = 16}, - [2101] = {.lex_state = 195, .external_lex_state = 13}, - [2102] = {.lex_state = 220, .external_lex_state = 16}, - [2103] = {.lex_state = 195, .external_lex_state = 13}, - [2104] = {.lex_state = 195, .external_lex_state = 13}, - [2105] = {.lex_state = 131, .external_lex_state = 19}, - [2106] = {.lex_state = 131, .external_lex_state = 19}, - [2107] = {.lex_state = 131, .external_lex_state = 19}, - [2108] = {.lex_state = 220, .external_lex_state = 16}, - [2109] = {.lex_state = 131, .external_lex_state = 19}, - [2110] = {.lex_state = 220, .external_lex_state = 16}, - [2111] = {.lex_state = 131, .external_lex_state = 19}, - [2112] = {.lex_state = 220, .external_lex_state = 16}, - [2113] = {.lex_state = 131, .external_lex_state = 19}, - [2114] = {.lex_state = 131, .external_lex_state = 19}, - [2115] = {.lex_state = 131, .external_lex_state = 19}, - [2116] = {.lex_state = 133, .external_lex_state = 4}, - [2117] = {.lex_state = 249, .external_lex_state = 13}, - [2118] = {.lex_state = 249, .external_lex_state = 13}, - [2119] = {.lex_state = 199, .external_lex_state = 22}, - [2120] = {.lex_state = 199, .external_lex_state = 22}, - [2121] = {.lex_state = 199, .external_lex_state = 16}, - [2122] = {.lex_state = 218, .external_lex_state = 16}, - [2123] = {.lex_state = 249, .external_lex_state = 13}, - [2124] = {.lex_state = 222}, - [2125] = {.lex_state = 220, .external_lex_state = 16}, - [2126] = {.lex_state = 249, .external_lex_state = 13}, - [2127] = {.lex_state = 222}, - [2128] = {.lex_state = 220, .external_lex_state = 16}, - [2129] = {.lex_state = 222}, - [2130] = {.lex_state = 220, .external_lex_state = 16}, - [2131] = {.lex_state = 220, .external_lex_state = 16}, - [2132] = {.lex_state = 249, .external_lex_state = 13}, - [2133] = {.lex_state = 220, .external_lex_state = 16}, - [2134] = {.lex_state = 249, .external_lex_state = 13}, - [2135] = {.lex_state = 220, .external_lex_state = 16}, - [2136] = {.lex_state = 249, .external_lex_state = 13}, - [2137] = {.lex_state = 204, .external_lex_state = 2}, - [2138] = {.lex_state = 56, .external_lex_state = 2}, - [2139] = {.lex_state = 249, .external_lex_state = 13}, - [2140] = {.lex_state = 204, .external_lex_state = 2}, - [2141] = {.lex_state = 133, .external_lex_state = 4}, - [2142] = {.lex_state = 235, .external_lex_state = 10}, - [2143] = {.lex_state = 235, .external_lex_state = 10}, - [2144] = {.lex_state = 235, .external_lex_state = 10}, - [2145] = {.lex_state = 220, .external_lex_state = 16}, - [2146] = {.lex_state = 235, .external_lex_state = 10}, - [2147] = {.lex_state = 220, .external_lex_state = 16}, - [2148] = {.lex_state = 235, .external_lex_state = 10}, - [2149] = {.lex_state = 220, .external_lex_state = 16}, - [2150] = {.lex_state = 235, .external_lex_state = 10}, - [2151] = {.lex_state = 235, .external_lex_state = 10}, - [2152] = {.lex_state = 235, .external_lex_state = 10}, - [2153] = {.lex_state = 247}, - [2154] = {.lex_state = 118, .external_lex_state = 9}, - [2155] = {.lex_state = 73}, - [2156] = {.lex_state = 125}, - [2157] = {.lex_state = 135, .external_lex_state = 12}, - [2158] = {.lex_state = 148}, - [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 = 163, .external_lex_state = 2}, - [2185] = {.lex_state = 56, .external_lex_state = 2}, - [2186] = {.lex_state = 56}, - [2187] = {.lex_state = 169}, - [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 = 254, .external_lex_state = 7}, - [2193] = {.lex_state = 88, .external_lex_state = 7}, - [2194] = {.lex_state = 73}, - [2195] = {.lex_state = 133, .external_lex_state = 4}, - [2196] = {.lex_state = 114, .external_lex_state = 8}, - [2197] = {.lex_state = 163, .external_lex_state = 2}, - [2198] = {.lex_state = 88, .external_lex_state = 7}, - [2199] = {.lex_state = 163, .external_lex_state = 2}, - [2200] = {.lex_state = 163, .external_lex_state = 2}, - [2201] = {.lex_state = 73}, - [2202] = {.lex_state = 133, .external_lex_state = 4}, - [2203] = {.lex_state = 114, .external_lex_state = 8}, - [2204] = {.lex_state = 163, .external_lex_state = 2}, - [2205] = {.lex_state = 163, .external_lex_state = 2}, - [2206] = {.lex_state = 251}, - [2207] = {.lex_state = 163, .external_lex_state = 2}, - [2208] = {.lex_state = 251}, - [2209] = {.lex_state = 133, .external_lex_state = 4}, - [2210] = {.lex_state = 133, .external_lex_state = 4}, - [2211] = {.lex_state = 123, .external_lex_state = 10}, - [2212] = {.lex_state = 123, .external_lex_state = 10}, - [2213] = {.lex_state = 123, .external_lex_state = 10}, - [2214] = {.lex_state = 133, .external_lex_state = 10}, - [2215] = {.lex_state = 206, .external_lex_state = 23}, - [2216] = {.lex_state = 135, .external_lex_state = 11}, - [2217] = {.lex_state = 135, .external_lex_state = 11}, - [2218] = {.lex_state = 135, .external_lex_state = 11}, - [2219] = {.lex_state = 229, .external_lex_state = 23}, - [2220] = {.lex_state = 229, .external_lex_state = 23}, - [2221] = {.lex_state = 199, .external_lex_state = 22}, - [2222] = {.lex_state = 199, .external_lex_state = 22}, - [2223] = {.lex_state = 199, .external_lex_state = 16}, - [2224] = {.lex_state = 218, .external_lex_state = 16}, - [2225] = {.lex_state = 229, .external_lex_state = 23}, - [2226] = {.lex_state = 222}, - [2227] = {.lex_state = 220, .external_lex_state = 16}, - [2228] = {.lex_state = 229, .external_lex_state = 23}, - [2229] = {.lex_state = 222}, - [2230] = {.lex_state = 220, .external_lex_state = 16}, - [2231] = {.lex_state = 222}, - [2232] = {.lex_state = 220, .external_lex_state = 16}, - [2233] = {.lex_state = 220, .external_lex_state = 16}, - [2234] = {.lex_state = 229, .external_lex_state = 23}, - [2235] = {.lex_state = 220, .external_lex_state = 16}, - [2236] = {.lex_state = 229, .external_lex_state = 23}, - [2237] = {.lex_state = 220, .external_lex_state = 16}, - [2238] = {.lex_state = 229, .external_lex_state = 23}, - [2239] = {.lex_state = 204, .external_lex_state = 2}, - [2240] = {.lex_state = 56, .external_lex_state = 2}, - [2241] = {.lex_state = 229, .external_lex_state = 23}, - [2242] = {.lex_state = 204, .external_lex_state = 2}, - [2243] = {.lex_state = 215, .external_lex_state = 13}, - [2244] = {.lex_state = 215, .external_lex_state = 13}, - [2245] = {.lex_state = 215, .external_lex_state = 13}, - [2246] = {.lex_state = 127, .external_lex_state = 14}, - [2247] = {.lex_state = 127, .external_lex_state = 14}, - [2248] = {.lex_state = 127, .external_lex_state = 14}, - [2249] = {.lex_state = 127, .external_lex_state = 10}, - [2250] = {.lex_state = 127, .external_lex_state = 10}, - [2251] = {.lex_state = 127, .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 = 199, .external_lex_state = 22}, - [2259] = {.lex_state = 199, .external_lex_state = 22}, - [2260] = {.lex_state = 199, .external_lex_state = 22}, - [2261] = {.lex_state = 199, .external_lex_state = 22}, - [2262] = {.lex_state = 199, .external_lex_state = 16}, - [2263] = {.lex_state = 220, .external_lex_state = 16}, - [2264] = {.lex_state = 199, .external_lex_state = 22}, - [2265] = {.lex_state = 220, .external_lex_state = 16}, - [2266] = {.lex_state = 199, .external_lex_state = 22}, - [2267] = {.lex_state = 220, .external_lex_state = 16}, - [2268] = {.lex_state = 199, .external_lex_state = 22}, - [2269] = {.lex_state = 220, .external_lex_state = 16}, - [2270] = {.lex_state = 199, .external_lex_state = 22}, - [2271] = {.lex_state = 220, .external_lex_state = 16}, - [2272] = {.lex_state = 199, .external_lex_state = 22}, - [2273] = {.lex_state = 220, .external_lex_state = 16}, - [2274] = {.lex_state = 199, .external_lex_state = 22}, - [2275] = {.lex_state = 199, .external_lex_state = 22}, - [2276] = {.lex_state = 220, .external_lex_state = 22}, - [2277] = {.lex_state = 220, .external_lex_state = 22}, - [2278] = {.lex_state = 220, .external_lex_state = 22}, - [2279] = {.lex_state = 220, .external_lex_state = 16}, - [2280] = {.lex_state = 220, .external_lex_state = 22}, - [2281] = {.lex_state = 220, .external_lex_state = 16}, - [2282] = {.lex_state = 220, .external_lex_state = 22}, - [2283] = {.lex_state = 220, .external_lex_state = 16}, - [2284] = {.lex_state = 220, .external_lex_state = 22}, - [2285] = {.lex_state = 220, .external_lex_state = 22}, - [2286] = {.lex_state = 220, .external_lex_state = 22}, - [2287] = {.lex_state = 133, .external_lex_state = 10}, - [2288] = {.lex_state = 227, .external_lex_state = 23}, - [2289] = {.lex_state = 166, .external_lex_state = 17}, - [2290] = {.lex_state = 166, .external_lex_state = 17}, - [2291] = {.lex_state = 166, .external_lex_state = 17}, - [2292] = {.lex_state = 220, .external_lex_state = 16}, - [2293] = {.lex_state = 166, .external_lex_state = 17}, - [2294] = {.lex_state = 220, .external_lex_state = 16}, - [2295] = {.lex_state = 166, .external_lex_state = 17}, - [2296] = {.lex_state = 220, .external_lex_state = 16}, - [2297] = {.lex_state = 166, .external_lex_state = 17}, - [2298] = {.lex_state = 166, .external_lex_state = 17}, - [2299] = {.lex_state = 166, .external_lex_state = 17}, - [2300] = {.lex_state = 195, .external_lex_state = 13}, - [2301] = {.lex_state = 195, .external_lex_state = 13}, - [2302] = {.lex_state = 195, .external_lex_state = 13}, - [2303] = {.lex_state = 220, .external_lex_state = 16}, - [2304] = {.lex_state = 195, .external_lex_state = 13}, - [2305] = {.lex_state = 220, .external_lex_state = 16}, - [2306] = {.lex_state = 195, .external_lex_state = 13}, - [2307] = {.lex_state = 220, .external_lex_state = 16}, - [2308] = {.lex_state = 195, .external_lex_state = 13}, - [2309] = {.lex_state = 195, .external_lex_state = 13}, - [2310] = {.lex_state = 195, .external_lex_state = 13}, - [2311] = {.lex_state = 131, .external_lex_state = 19}, - [2312] = {.lex_state = 131, .external_lex_state = 19}, - [2313] = {.lex_state = 131, .external_lex_state = 19}, - [2314] = {.lex_state = 249, .external_lex_state = 13}, - [2315] = {.lex_state = 249, .external_lex_state = 13}, - [2316] = {.lex_state = 199, .external_lex_state = 22}, - [2317] = {.lex_state = 199, .external_lex_state = 22}, - [2318] = {.lex_state = 199, .external_lex_state = 16}, - [2319] = {.lex_state = 220, .external_lex_state = 16}, - [2320] = {.lex_state = 249, .external_lex_state = 13}, - [2321] = {.lex_state = 220, .external_lex_state = 16}, - [2322] = {.lex_state = 249, .external_lex_state = 13}, - [2323] = {.lex_state = 220, .external_lex_state = 16}, - [2324] = {.lex_state = 249, .external_lex_state = 13}, - [2325] = {.lex_state = 220, .external_lex_state = 16}, - [2326] = {.lex_state = 249, .external_lex_state = 13}, - [2327] = {.lex_state = 220, .external_lex_state = 16}, - [2328] = {.lex_state = 249, .external_lex_state = 13}, - [2329] = {.lex_state = 220, .external_lex_state = 16}, - [2330] = {.lex_state = 249, .external_lex_state = 13}, - [2331] = {.lex_state = 249, .external_lex_state = 13}, - [2332] = {.lex_state = 235, .external_lex_state = 10}, - [2333] = {.lex_state = 235, .external_lex_state = 10}, - [2334] = {.lex_state = 235, .external_lex_state = 10}, - [2335] = {.lex_state = 133, .external_lex_state = 4}, - [2336] = {.lex_state = 114, .external_lex_state = 19}, - [2337] = {.lex_state = 114, .external_lex_state = 19}, - [2338] = {.lex_state = 254, .external_lex_state = 7}, - [2339] = {.lex_state = 77}, - [2340] = {.lex_state = 256, .external_lex_state = 21}, - [2341] = {.lex_state = 254, .external_lex_state = 21}, - [2342] = {.lex_state = 118, .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 = 152}, - [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 = 158, .external_lex_state = 6}, - [2353] = {.lex_state = 160, .external_lex_state = 16}, - [2354] = {.lex_state = 160, .external_lex_state = 16}, - [2355] = {.lex_state = 160, .external_lex_state = 16}, - [2356] = {.lex_state = 127, .external_lex_state = 4}, - [2357] = {.lex_state = 131, .external_lex_state = 8}, - [2358] = {.lex_state = 56, .external_lex_state = 2}, - [2359] = {.lex_state = 83, .external_lex_state = 4}, - [2360] = {.lex_state = 114, .external_lex_state = 8}, - [2361] = {.lex_state = 56, .external_lex_state = 2}, - [2362] = {.lex_state = 127, .external_lex_state = 4}, - [2363] = {.lex_state = 131, .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 = 152}, - [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 = 158, .external_lex_state = 6}, - [2376] = {.lex_state = 160, .external_lex_state = 16}, - [2377] = {.lex_state = 160, .external_lex_state = 16}, - [2378] = {.lex_state = 160, .external_lex_state = 16}, - [2379] = {.lex_state = 127, .external_lex_state = 4}, - [2380] = {.lex_state = 131, .external_lex_state = 8}, - [2381] = {.lex_state = 56, .external_lex_state = 2}, - [2382] = {.lex_state = 83, .external_lex_state = 4}, - [2383] = {.lex_state = 114, .external_lex_state = 8}, - [2384] = {.lex_state = 56, .external_lex_state = 2}, - [2385] = {.lex_state = 127, .external_lex_state = 4}, - [2386] = {.lex_state = 131, .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 = 125}, - [2391] = {.lex_state = 133, .external_lex_state = 4}, - [2392] = {.lex_state = 114, .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 = 254, .external_lex_state = 5}, - [2397] = {.lex_state = 254, .external_lex_state = 5}, - [2398] = {.lex_state = 254, .external_lex_state = 5}, - [2399] = {.lex_state = 254, .external_lex_state = 5}, - [2400] = {.lex_state = 254, .external_lex_state = 7}, - [2401] = {.lex_state = 254, .external_lex_state = 7}, - [2402] = {.lex_state = 88, .external_lex_state = 7}, - [2403] = {.lex_state = 163, .external_lex_state = 2}, - [2404] = {.lex_state = 88, .external_lex_state = 7}, - [2405] = {.lex_state = 73}, - [2406] = {.lex_state = 133, .external_lex_state = 4}, - [2407] = {.lex_state = 114, .external_lex_state = 8}, - [2408] = {.lex_state = 163, .external_lex_state = 2}, - [2409] = {.lex_state = 73}, - [2410] = {.lex_state = 133, .external_lex_state = 4}, - [2411] = {.lex_state = 114, .external_lex_state = 8}, - [2412] = {.lex_state = 73}, - [2413] = {.lex_state = 83, .external_lex_state = 4}, - [2414] = {.lex_state = 114, .external_lex_state = 8}, - [2415] = {.lex_state = 163, .external_lex_state = 2}, - [2416] = {.lex_state = 163, .external_lex_state = 2}, - [2417] = {.lex_state = 73}, - [2418] = {.lex_state = 83, .external_lex_state = 4}, - [2419] = {.lex_state = 114, .external_lex_state = 8}, - [2420] = {.lex_state = 163, .external_lex_state = 2}, - [2421] = {.lex_state = 163, .external_lex_state = 2}, - [2422] = {.lex_state = 229, .external_lex_state = 23}, - [2423] = {.lex_state = 229, .external_lex_state = 23}, - [2424] = {.lex_state = 199, .external_lex_state = 22}, - [2425] = {.lex_state = 199, .external_lex_state = 22}, - [2426] = {.lex_state = 199, .external_lex_state = 16}, - [2427] = {.lex_state = 220, .external_lex_state = 16}, - [2428] = {.lex_state = 229, .external_lex_state = 23}, - [2429] = {.lex_state = 220, .external_lex_state = 16}, - [2430] = {.lex_state = 229, .external_lex_state = 23}, - [2431] = {.lex_state = 220, .external_lex_state = 16}, - [2432] = {.lex_state = 229, .external_lex_state = 23}, - [2433] = {.lex_state = 220, .external_lex_state = 16}, - [2434] = {.lex_state = 229, .external_lex_state = 23}, - [2435] = {.lex_state = 220, .external_lex_state = 16}, - [2436] = {.lex_state = 229, .external_lex_state = 23}, - [2437] = {.lex_state = 220, .external_lex_state = 16}, - [2438] = {.lex_state = 229, .external_lex_state = 23}, - [2439] = {.lex_state = 229, .external_lex_state = 23}, - [2440] = {.lex_state = 199, .external_lex_state = 22}, - [2441] = {.lex_state = 199, .external_lex_state = 22}, - [2442] = {.lex_state = 199, .external_lex_state = 22}, - [2443] = {.lex_state = 220, .external_lex_state = 16}, - [2444] = {.lex_state = 199, .external_lex_state = 22}, - [2445] = {.lex_state = 220, .external_lex_state = 16}, - [2446] = {.lex_state = 199, .external_lex_state = 22}, - [2447] = {.lex_state = 220, .external_lex_state = 16}, - [2448] = {.lex_state = 199, .external_lex_state = 22}, - [2449] = {.lex_state = 199, .external_lex_state = 22}, - [2450] = {.lex_state = 199, .external_lex_state = 22}, - [2451] = {.lex_state = 220, .external_lex_state = 22}, - [2452] = {.lex_state = 220, .external_lex_state = 22}, - [2453] = {.lex_state = 220, .external_lex_state = 22}, - [2454] = {.lex_state = 166, .external_lex_state = 17}, - [2455] = {.lex_state = 166, .external_lex_state = 17}, - [2456] = {.lex_state = 166, .external_lex_state = 17}, - [2457] = {.lex_state = 195, .external_lex_state = 13}, - [2458] = {.lex_state = 195, .external_lex_state = 13}, - [2459] = {.lex_state = 195, .external_lex_state = 13}, - [2460] = {.lex_state = 249, .external_lex_state = 13}, - [2461] = {.lex_state = 249, .external_lex_state = 13}, - [2462] = {.lex_state = 249, .external_lex_state = 13}, - [2463] = {.lex_state = 220, .external_lex_state = 16}, - [2464] = {.lex_state = 249, .external_lex_state = 13}, - [2465] = {.lex_state = 220, .external_lex_state = 16}, - [2466] = {.lex_state = 249, .external_lex_state = 13}, - [2467] = {.lex_state = 220, .external_lex_state = 16}, - [2468] = {.lex_state = 249, .external_lex_state = 13}, - [2469] = {.lex_state = 249, .external_lex_state = 13}, - [2470] = {.lex_state = 249, .external_lex_state = 13}, - [2471] = {.lex_state = 114, .external_lex_state = 19}, - [2472] = {.lex_state = 254, .external_lex_state = 7}, - [2473] = {.lex_state = 125}, - [2474] = {.lex_state = 56}, - [2475] = {.lex_state = 73}, - [2476] = {.lex_state = 56}, - [2477] = {.lex_state = 73}, - [2478] = {.lex_state = 73}, - [2479] = {.lex_state = 254, .external_lex_state = 21}, - [2480] = {.lex_state = 83, .external_lex_state = 3}, - [2481] = {.lex_state = 195}, - [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 = 152}, - [2488] = {.lex_state = 218, .external_lex_state = 16}, - [2489] = {.lex_state = 62}, - [2490] = {.lex_state = 160, .external_lex_state = 16}, - [2491] = {.lex_state = 160, .external_lex_state = 16}, - [2492] = {.lex_state = 160, .external_lex_state = 16}, - [2493] = {.lex_state = 83, .external_lex_state = 14}, - [2494] = {.lex_state = 222}, - [2495] = {.lex_state = 220, .external_lex_state = 16}, - [2496] = {.lex_state = 83, .external_lex_state = 14}, - [2497] = {.lex_state = 222}, - [2498] = {.lex_state = 220, .external_lex_state = 16}, - [2499] = {.lex_state = 83, .external_lex_state = 14}, - [2500] = {.lex_state = 222}, - [2501] = {.lex_state = 220, .external_lex_state = 16}, - [2502] = {.lex_state = 83, .external_lex_state = 14}, - [2503] = {.lex_state = 204, .external_lex_state = 2}, - [2504] = {.lex_state = 127, .external_lex_state = 4}, - [2505] = {.lex_state = 131, .external_lex_state = 8}, - [2506] = {.lex_state = 56, .external_lex_state = 2}, - [2507] = {.lex_state = 83, .external_lex_state = 4}, - [2508] = {.lex_state = 114, .external_lex_state = 8}, - [2509] = {.lex_state = 83, .external_lex_state = 14}, - [2510] = {.lex_state = 204, .external_lex_state = 2}, - [2511] = {.lex_state = 127, .external_lex_state = 4}, - [2512] = {.lex_state = 131, .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 = 152}, - [2517] = {.lex_state = 218, .external_lex_state = 16}, - [2518] = {.lex_state = 62}, - [2519] = {.lex_state = 160, .external_lex_state = 16}, - [2520] = {.lex_state = 160, .external_lex_state = 16}, - [2521] = {.lex_state = 160, .external_lex_state = 16}, - [2522] = {.lex_state = 83, .external_lex_state = 10}, - [2523] = {.lex_state = 222}, - [2524] = {.lex_state = 220, .external_lex_state = 16}, - [2525] = {.lex_state = 83, .external_lex_state = 10}, - [2526] = {.lex_state = 222}, - [2527] = {.lex_state = 220, .external_lex_state = 16}, - [2528] = {.lex_state = 83, .external_lex_state = 10}, - [2529] = {.lex_state = 222}, - [2530] = {.lex_state = 220, .external_lex_state = 16}, - [2531] = {.lex_state = 83, .external_lex_state = 10}, - [2532] = {.lex_state = 204, .external_lex_state = 2}, - [2533] = {.lex_state = 127, .external_lex_state = 4}, - [2534] = {.lex_state = 131, .external_lex_state = 8}, - [2535] = {.lex_state = 56, .external_lex_state = 2}, - [2536] = {.lex_state = 83, .external_lex_state = 4}, - [2537] = {.lex_state = 114, .external_lex_state = 8}, - [2538] = {.lex_state = 83, .external_lex_state = 10}, - [2539] = {.lex_state = 204, .external_lex_state = 2}, - [2540] = {.lex_state = 127, .external_lex_state = 4}, - [2541] = {.lex_state = 131, .external_lex_state = 8}, - [2542] = {.lex_state = 256, .external_lex_state = 21}, - [2543] = {.lex_state = 254, .external_lex_state = 5}, - [2544] = {.lex_state = 254, .external_lex_state = 5}, - [2545] = {.lex_state = 254, .external_lex_state = 5}, - [2546] = {.lex_state = 254, .external_lex_state = 7}, - [2547] = {.lex_state = 163, .external_lex_state = 2}, - [2548] = {.lex_state = 163, .external_lex_state = 2}, - [2549] = {.lex_state = 163, .external_lex_state = 2}, - [2550] = {.lex_state = 73}, - [2551] = {.lex_state = 83, .external_lex_state = 4}, - [2552] = {.lex_state = 114, .external_lex_state = 8}, - [2553] = {.lex_state = 163, .external_lex_state = 2}, - [2554] = {.lex_state = 163, .external_lex_state = 2}, - [2555] = {.lex_state = 163, .external_lex_state = 2}, - [2556] = {.lex_state = 73}, - [2557] = {.lex_state = 83, .external_lex_state = 4}, - [2558] = {.lex_state = 114, .external_lex_state = 8}, - [2559] = {.lex_state = 163, .external_lex_state = 2}, - [2560] = {.lex_state = 229, .external_lex_state = 23}, - [2561] = {.lex_state = 229, .external_lex_state = 23}, - [2562] = {.lex_state = 229, .external_lex_state = 23}, - [2563] = {.lex_state = 220, .external_lex_state = 16}, - [2564] = {.lex_state = 229, .external_lex_state = 23}, - [2565] = {.lex_state = 220, .external_lex_state = 16}, - [2566] = {.lex_state = 229, .external_lex_state = 23}, - [2567] = {.lex_state = 220, .external_lex_state = 16}, - [2568] = {.lex_state = 229, .external_lex_state = 23}, - [2569] = {.lex_state = 229, .external_lex_state = 23}, - [2570] = {.lex_state = 229, .external_lex_state = 23}, - [2571] = {.lex_state = 199, .external_lex_state = 22}, - [2572] = {.lex_state = 199, .external_lex_state = 22}, - [2573] = {.lex_state = 199, .external_lex_state = 22}, - [2574] = {.lex_state = 249, .external_lex_state = 13}, - [2575] = {.lex_state = 249, .external_lex_state = 13}, - [2576] = {.lex_state = 249, .external_lex_state = 13}, - [2577] = {.lex_state = 114, .external_lex_state = 19}, - [2578] = {.lex_state = 256, .external_lex_state = 21}, - [2579] = {.lex_state = 73}, - [2580] = {.lex_state = 133, .external_lex_state = 10}, - [2581] = {.lex_state = 133, .external_lex_state = 10}, - [2582] = {.lex_state = 73}, - [2583] = {.lex_state = 254, .external_lex_state = 23}, - [2584] = {.lex_state = 254, .external_lex_state = 23}, - [2585] = {.lex_state = 254, .external_lex_state = 23}, - [2586] = {.lex_state = 254, .external_lex_state = 23}, - [2587] = {.lex_state = 254, .external_lex_state = 21}, - [2588] = {.lex_state = 83, .external_lex_state = 3}, - [2589] = {.lex_state = 195}, - [2590] = {.lex_state = 83, .external_lex_state = 14}, - [2591] = {.lex_state = 83, .external_lex_state = 14}, - [2592] = {.lex_state = 199, .external_lex_state = 22}, - [2593] = {.lex_state = 199, .external_lex_state = 22}, - [2594] = {.lex_state = 199, .external_lex_state = 16}, - [2595] = {.lex_state = 218, .external_lex_state = 16}, - [2596] = {.lex_state = 83, .external_lex_state = 14}, - [2597] = {.lex_state = 222}, - [2598] = {.lex_state = 220, .external_lex_state = 16}, - [2599] = {.lex_state = 83, .external_lex_state = 14}, - [2600] = {.lex_state = 222}, - [2601] = {.lex_state = 220, .external_lex_state = 16}, - [2602] = {.lex_state = 222}, - [2603] = {.lex_state = 220, .external_lex_state = 16}, - [2604] = {.lex_state = 220, .external_lex_state = 16}, - [2605] = {.lex_state = 83, .external_lex_state = 14}, - [2606] = {.lex_state = 220, .external_lex_state = 16}, - [2607] = {.lex_state = 83, .external_lex_state = 14}, - [2608] = {.lex_state = 220, .external_lex_state = 16}, - [2609] = {.lex_state = 83, .external_lex_state = 14}, - [2610] = {.lex_state = 204, .external_lex_state = 2}, - [2611] = {.lex_state = 56, .external_lex_state = 2}, - [2612] = {.lex_state = 83, .external_lex_state = 14}, - [2613] = {.lex_state = 204, .external_lex_state = 2}, - [2614] = {.lex_state = 83, .external_lex_state = 10}, - [2615] = {.lex_state = 83, .external_lex_state = 10}, - [2616] = {.lex_state = 199, .external_lex_state = 22}, - [2617] = {.lex_state = 199, .external_lex_state = 22}, - [2618] = {.lex_state = 199, .external_lex_state = 16}, - [2619] = {.lex_state = 218, .external_lex_state = 16}, - [2620] = {.lex_state = 83, .external_lex_state = 10}, - [2621] = {.lex_state = 222}, - [2622] = {.lex_state = 220, .external_lex_state = 16}, - [2623] = {.lex_state = 83, .external_lex_state = 10}, - [2624] = {.lex_state = 222}, - [2625] = {.lex_state = 220, .external_lex_state = 16}, - [2626] = {.lex_state = 222}, - [2627] = {.lex_state = 220, .external_lex_state = 16}, - [2628] = {.lex_state = 220, .external_lex_state = 16}, - [2629] = {.lex_state = 83, .external_lex_state = 10}, - [2630] = {.lex_state = 220, .external_lex_state = 16}, - [2631] = {.lex_state = 83, .external_lex_state = 10}, - [2632] = {.lex_state = 220, .external_lex_state = 16}, - [2633] = {.lex_state = 83, .external_lex_state = 10}, - [2634] = {.lex_state = 204, .external_lex_state = 2}, - [2635] = {.lex_state = 56, .external_lex_state = 2}, - [2636] = {.lex_state = 83, .external_lex_state = 10}, - [2637] = {.lex_state = 204, .external_lex_state = 2}, - [2638] = {.lex_state = 254, .external_lex_state = 5}, - [2639] = {.lex_state = 163, .external_lex_state = 2}, - [2640] = {.lex_state = 73}, - [2641] = {.lex_state = 83, .external_lex_state = 4}, - [2642] = {.lex_state = 114, .external_lex_state = 8}, - [2643] = {.lex_state = 163, .external_lex_state = 2}, - [2644] = {.lex_state = 73}, - [2645] = {.lex_state = 83, .external_lex_state = 4}, - [2646] = {.lex_state = 114, .external_lex_state = 8}, - [2647] = {.lex_state = 229, .external_lex_state = 23}, - [2648] = {.lex_state = 229, .external_lex_state = 23}, - [2649] = {.lex_state = 229, .external_lex_state = 23}, - [2650] = {.lex_state = 133, .external_lex_state = 10}, - [2651] = {.lex_state = 133, .external_lex_state = 10}, - [2652] = {.lex_state = 133, .external_lex_state = 10}, - [2653] = {.lex_state = 254, .external_lex_state = 23}, - [2654] = {.lex_state = 254, .external_lex_state = 23}, - [2655] = {.lex_state = 254, .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 = 199, .external_lex_state = 22}, - [2660] = {.lex_state = 199, .external_lex_state = 22}, - [2661] = {.lex_state = 199, .external_lex_state = 16}, - [2662] = {.lex_state = 220, .external_lex_state = 16}, - [2663] = {.lex_state = 83, .external_lex_state = 14}, - [2664] = {.lex_state = 220, .external_lex_state = 16}, - [2665] = {.lex_state = 83, .external_lex_state = 14}, - [2666] = {.lex_state = 220, .external_lex_state = 16}, - [2667] = {.lex_state = 83, .external_lex_state = 14}, - [2668] = {.lex_state = 220, .external_lex_state = 16}, - [2669] = {.lex_state = 83, .external_lex_state = 14}, - [2670] = {.lex_state = 220, .external_lex_state = 16}, - [2671] = {.lex_state = 83, .external_lex_state = 14}, - [2672] = {.lex_state = 220, .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 = 199, .external_lex_state = 22}, - [2678] = {.lex_state = 199, .external_lex_state = 22}, - [2679] = {.lex_state = 199, .external_lex_state = 16}, - [2680] = {.lex_state = 220, .external_lex_state = 16}, - [2681] = {.lex_state = 83, .external_lex_state = 10}, - [2682] = {.lex_state = 220, .external_lex_state = 16}, - [2683] = {.lex_state = 83, .external_lex_state = 10}, - [2684] = {.lex_state = 220, .external_lex_state = 16}, - [2685] = {.lex_state = 83, .external_lex_state = 10}, - [2686] = {.lex_state = 220, .external_lex_state = 16}, - [2687] = {.lex_state = 83, .external_lex_state = 10}, - [2688] = {.lex_state = 220, .external_lex_state = 16}, - [2689] = {.lex_state = 83, .external_lex_state = 10}, - [2690] = {.lex_state = 220, .external_lex_state = 16}, - [2691] = {.lex_state = 83, .external_lex_state = 10}, - [2692] = {.lex_state = 83, .external_lex_state = 10}, - [2693] = {.lex_state = 163, .external_lex_state = 2}, - [2694] = {.lex_state = 163, .external_lex_state = 2}, - [2695] = {.lex_state = 133, .external_lex_state = 10}, - [2696] = {.lex_state = 254, .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 = 220, .external_lex_state = 16}, - [2701] = {.lex_state = 83, .external_lex_state = 14}, - [2702] = {.lex_state = 220, .external_lex_state = 16}, - [2703] = {.lex_state = 83, .external_lex_state = 14}, - [2704] = {.lex_state = 220, .external_lex_state = 16}, - [2705] = {.lex_state = 83, .external_lex_state = 14}, - [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 = 220, .external_lex_state = 16}, - [2712] = {.lex_state = 83, .external_lex_state = 10}, - [2713] = {.lex_state = 220, .external_lex_state = 16}, - [2714] = {.lex_state = 83, .external_lex_state = 10}, - [2715] = {.lex_state = 220, .external_lex_state = 16}, - [2716] = {.lex_state = 83, .external_lex_state = 10}, - [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}, + [1] = {.lex_state = 63, .external_lex_state = 2}, + [2] = {.lex_state = 63}, + [3] = {.lex_state = 69}, + [4] = {.lex_state = 75}, + [5] = {.lex_state = 63, .external_lex_state = 2}, + [6] = {.lex_state = 63, .external_lex_state = 2}, + [7] = {.lex_state = 80}, + [8] = {.lex_state = 80}, + [9] = {.lex_state = 63, .external_lex_state = 2}, + [10] = {.lex_state = 82, .external_lex_state = 2}, + [11] = {.lex_state = 84}, + [12] = {.lex_state = 84}, + [13] = {.lex_state = 90, .external_lex_state = 3}, + [14] = {.lex_state = 90, .external_lex_state = 4}, + [15] = {.lex_state = 80}, + [16] = {.lex_state = 94, .external_lex_state = 5}, + [17] = {.lex_state = 97}, + [18] = {.lex_state = 104}, + [19] = {.lex_state = 94, .external_lex_state = 5}, + [20] = {.lex_state = 113, .external_lex_state = 6}, + [21] = {.lex_state = 63, .external_lex_state = 2}, + [22] = {.lex_state = 63, .external_lex_state = 2}, + [23] = {.lex_state = 63, .external_lex_state = 2}, + [24] = {.lex_state = 116, .external_lex_state = 5}, + [25] = {.lex_state = 118}, + [26] = {.lex_state = 90, .external_lex_state = 4}, + [27] = {.lex_state = 94, .external_lex_state = 7}, + [28] = {.lex_state = 120, .external_lex_state = 8}, + [29] = {.lex_state = 69}, + [30] = {.lex_state = 80, .external_lex_state = 2}, + [31] = {.lex_state = 122, .external_lex_state = 7}, + [32] = {.lex_state = 63, .external_lex_state = 2}, + [33] = {.lex_state = 80, .external_lex_state = 2}, + [34] = {.lex_state = 80}, + [35] = {.lex_state = 80}, + [36] = {.lex_state = 124, .external_lex_state = 9}, + [37] = {.lex_state = 126, .external_lex_state = 4}, + [38] = {.lex_state = 129, .external_lex_state = 4}, + [39] = {.lex_state = 80}, + [40] = {.lex_state = 90, .external_lex_state = 4}, + [41] = {.lex_state = 120, .external_lex_state = 8}, + [42] = {.lex_state = 80}, + [43] = {.lex_state = 129, .external_lex_state = 10}, + [44] = {.lex_state = 97}, + [45] = {.lex_state = 104}, + [46] = {.lex_state = 129, .external_lex_state = 10}, + [47] = {.lex_state = 113, .external_lex_state = 6}, + [48] = {.lex_state = 63, .external_lex_state = 2}, + [49] = {.lex_state = 63, .external_lex_state = 2}, + [50] = {.lex_state = 63, .external_lex_state = 2}, + [51] = {.lex_state = 129, .external_lex_state = 4}, + [52] = {.lex_state = 133}, + [53] = {.lex_state = 69}, + [54] = {.lex_state = 63, .external_lex_state = 2}, + [55] = {.lex_state = 80}, + [56] = {.lex_state = 82, .external_lex_state = 2}, + [57] = {.lex_state = 84}, + [58] = {.lex_state = 84}, + [59] = {.lex_state = 135, .external_lex_state = 3}, + [60] = {.lex_state = 135, .external_lex_state = 4}, + [61] = {.lex_state = 122, .external_lex_state = 5}, + [62] = {.lex_state = 122, .external_lex_state = 5}, + [63] = {.lex_state = 137, .external_lex_state = 5}, + [64] = {.lex_state = 135, .external_lex_state = 4}, + [65] = {.lex_state = 122, .external_lex_state = 7}, + [66] = {.lex_state = 139, .external_lex_state = 8}, + [67] = {.lex_state = 69}, + [68] = {.lex_state = 63, .external_lex_state = 2}, + [69] = {.lex_state = 80, .external_lex_state = 2}, + [70] = {.lex_state = 69}, + [71] = {.lex_state = 141, .external_lex_state = 4}, + [72] = {.lex_state = 69}, + [73] = {.lex_state = 84}, + [74] = {.lex_state = 84}, + [75] = {.lex_state = 147, .external_lex_state = 11}, + [76] = {.lex_state = 97}, + [77] = {.lex_state = 104}, + [78] = {.lex_state = 147, .external_lex_state = 11}, + [79] = {.lex_state = 113, .external_lex_state = 6}, + [80] = {.lex_state = 63, .external_lex_state = 2}, + [81] = {.lex_state = 63, .external_lex_state = 2}, + [82] = {.lex_state = 63, .external_lex_state = 2}, + [83] = {.lex_state = 147, .external_lex_state = 12}, + [84] = {.lex_state = 84}, + [85] = {.lex_state = 84}, + [86] = {.lex_state = 160, .external_lex_state = 13}, + [87] = {.lex_state = 97}, + [88] = {.lex_state = 104}, + [89] = {.lex_state = 160, .external_lex_state = 13}, + [90] = {.lex_state = 113, .external_lex_state = 6}, + [91] = {.lex_state = 63, .external_lex_state = 2}, + [92] = {.lex_state = 63, .external_lex_state = 2}, + [93] = {.lex_state = 63, .external_lex_state = 2}, + [94] = {.lex_state = 160}, + [95] = {.lex_state = 69}, + [96] = {.lex_state = 90, .external_lex_state = 14}, + [97] = {.lex_state = 97}, + [98] = {.lex_state = 104}, + [99] = {.lex_state = 90, .external_lex_state = 14}, + [100] = {.lex_state = 113, .external_lex_state = 6}, + [101] = {.lex_state = 63, .external_lex_state = 2}, + [102] = {.lex_state = 63, .external_lex_state = 2}, + [103] = {.lex_state = 63, .external_lex_state = 2}, + [104] = {.lex_state = 135, .external_lex_state = 3}, + [105] = {.lex_state = 69}, + [106] = {.lex_state = 90, .external_lex_state = 3}, + [107] = {.lex_state = 90, .external_lex_state = 10}, + [108] = {.lex_state = 97}, + [109] = {.lex_state = 104}, + [110] = {.lex_state = 90, .external_lex_state = 10}, + [111] = {.lex_state = 113, .external_lex_state = 6}, + [112] = {.lex_state = 63, .external_lex_state = 2}, + [113] = {.lex_state = 63, .external_lex_state = 2}, + [114] = {.lex_state = 63, .external_lex_state = 2}, + [115] = {.lex_state = 135, .external_lex_state = 4}, + [116] = {.lex_state = 90, .external_lex_state = 4}, + [117] = {.lex_state = 80, .external_lex_state = 15}, + [118] = {.lex_state = 97}, + [119] = {.lex_state = 104}, + [120] = {.lex_state = 80, .external_lex_state = 15}, + [121] = {.lex_state = 113, .external_lex_state = 6}, + [122] = {.lex_state = 63, .external_lex_state = 2}, + [123] = {.lex_state = 63, .external_lex_state = 2}, + [124] = {.lex_state = 63, .external_lex_state = 2}, + [125] = {.lex_state = 80, .external_lex_state = 2}, + [126] = {.lex_state = 80}, + [127] = {.lex_state = 94, .external_lex_state = 5}, + [128] = {.lex_state = 122, .external_lex_state = 5}, + [129] = {.lex_state = 164}, + [130] = {.lex_state = 97, .external_lex_state = 13}, + [131] = {.lex_state = 113, .external_lex_state = 6}, + [132] = {.lex_state = 63, .external_lex_state = 2}, + [133] = {.lex_state = 63, .external_lex_state = 2}, + [134] = {.lex_state = 97}, + [135] = {.lex_state = 122, .external_lex_state = 5}, + [136] = {.lex_state = 122, .external_lex_state = 5}, + [137] = {.lex_state = 122, .external_lex_state = 5}, + [138] = {.lex_state = 69}, + [139] = {.lex_state = 170, .external_lex_state = 6}, + [140] = {.lex_state = 172, .external_lex_state = 16}, + [141] = {.lex_state = 172, .external_lex_state = 16}, + [142] = {.lex_state = 172, .external_lex_state = 16}, + [143] = {.lex_state = 135, .external_lex_state = 4}, + [144] = {.lex_state = 139, .external_lex_state = 8}, + [145] = {.lex_state = 63, .external_lex_state = 2}, + [146] = {.lex_state = 63, .external_lex_state = 2}, + [147] = {.lex_state = 80}, + [148] = {.lex_state = 82, .external_lex_state = 2}, + [149] = {.lex_state = 84}, + [150] = {.lex_state = 84}, + [151] = {.lex_state = 90, .external_lex_state = 3}, + [152] = {.lex_state = 90, .external_lex_state = 4}, + [153] = {.lex_state = 116, .external_lex_state = 5}, + [154] = {.lex_state = 90, .external_lex_state = 4}, + [155] = {.lex_state = 94, .external_lex_state = 7}, + [156] = {.lex_state = 120, .external_lex_state = 8}, + [157] = {.lex_state = 63, .external_lex_state = 2}, + [158] = {.lex_state = 80, .external_lex_state = 2}, + [159] = {.lex_state = 135, .external_lex_state = 4}, + [160] = {.lex_state = 139, .external_lex_state = 8}, + [161] = {.lex_state = 63, .external_lex_state = 2}, + [162] = {.lex_state = 84}, + [163] = {.lex_state = 63, .external_lex_state = 2}, + [164] = {.lex_state = 175, .external_lex_state = 2}, + [165] = {.lex_state = 63, .external_lex_state = 2}, + [166] = {.lex_state = 141, .external_lex_state = 4}, + [167] = {.lex_state = 178, .external_lex_state = 17}, + [168] = {.lex_state = 63}, + [169] = {.lex_state = 181}, + [170] = {.lex_state = 80}, + [171] = {.lex_state = 63, .external_lex_state = 18}, + [172] = {.lex_state = 80}, + [173] = {.lex_state = 94, .external_lex_state = 5}, + [174] = {.lex_state = 94, .external_lex_state = 5}, + [175] = {.lex_state = 141, .external_lex_state = 4}, + [176] = {.lex_state = 204, .external_lex_state = 7}, + [177] = {.lex_state = 94, .external_lex_state = 7}, + [178] = {.lex_state = 63, .external_lex_state = 2}, + [179] = {.lex_state = 94, .external_lex_state = 7}, + [180] = {.lex_state = 80, .external_lex_state = 2}, + [181] = {.lex_state = 80, .external_lex_state = 15}, + [182] = {.lex_state = 80, .external_lex_state = 15}, + [183] = {.lex_state = 80, .external_lex_state = 2}, + [184] = {.lex_state = 208, .external_lex_state = 11}, + [185] = {.lex_state = 208, .external_lex_state = 11}, + [186] = {.lex_state = 208, .external_lex_state = 11}, + [187] = {.lex_state = 139, .external_lex_state = 8}, + [188] = {.lex_state = 210}, + [189] = {.lex_state = 120, .external_lex_state = 19}, + [190] = {.lex_state = 97}, + [191] = {.lex_state = 104}, + [192] = {.lex_state = 120, .external_lex_state = 19}, + [193] = {.lex_state = 113, .external_lex_state = 6}, + [194] = {.lex_state = 63, .external_lex_state = 2}, + [195] = {.lex_state = 63, .external_lex_state = 2}, + [196] = {.lex_state = 63, .external_lex_state = 2}, + [197] = {.lex_state = 126, .external_lex_state = 4}, + [198] = {.lex_state = 84}, + [199] = {.lex_state = 84}, + [200] = {.lex_state = 212, .external_lex_state = 10}, + [201] = {.lex_state = 97}, + [202] = {.lex_state = 104}, + [203] = {.lex_state = 212, .external_lex_state = 10}, + [204] = {.lex_state = 113, .external_lex_state = 6}, + [205] = {.lex_state = 63, .external_lex_state = 2}, + [206] = {.lex_state = 63, .external_lex_state = 2}, + [207] = {.lex_state = 63, .external_lex_state = 2}, + [208] = {.lex_state = 212, .external_lex_state = 4}, + [209] = {.lex_state = 80}, + [210] = {.lex_state = 80}, + [211] = {.lex_state = 63, .external_lex_state = 2}, + [212] = {.lex_state = 204, .external_lex_state = 7}, + [213] = {.lex_state = 80}, + [214] = {.lex_state = 63, .external_lex_state = 2}, + [215] = {.lex_state = 80}, + [216] = {.lex_state = 126, .external_lex_state = 4}, + [217] = {.lex_state = 129}, + [218] = {.lex_state = 129, .external_lex_state = 10}, + [219] = {.lex_state = 129, .external_lex_state = 10}, + [220] = {.lex_state = 164}, + [221] = {.lex_state = 97}, + [222] = {.lex_state = 129, .external_lex_state = 10}, + [223] = {.lex_state = 129, .external_lex_state = 10}, + [224] = {.lex_state = 129, .external_lex_state = 10}, + [225] = {.lex_state = 126, .external_lex_state = 4}, + [226] = {.lex_state = 129}, + [227] = {.lex_state = 69}, + [228] = {.lex_state = 170, .external_lex_state = 6}, + [229] = {.lex_state = 172, .external_lex_state = 16}, + [230] = {.lex_state = 172, .external_lex_state = 16}, + [231] = {.lex_state = 172, .external_lex_state = 16}, + [232] = {.lex_state = 135, .external_lex_state = 4}, + [233] = {.lex_state = 139, .external_lex_state = 8}, + [234] = {.lex_state = 63, .external_lex_state = 2}, + [235] = {.lex_state = 90, .external_lex_state = 4}, + [236] = {.lex_state = 120, .external_lex_state = 8}, + [237] = {.lex_state = 63, .external_lex_state = 2}, + [238] = {.lex_state = 135, .external_lex_state = 4}, + [239] = {.lex_state = 139, .external_lex_state = 8}, + [240] = {.lex_state = 63, .external_lex_state = 2}, + [241] = {.lex_state = 84}, + [242] = {.lex_state = 214, .external_lex_state = 20}, + [243] = {.lex_state = 216, .external_lex_state = 21}, + [244] = {.lex_state = 124, .external_lex_state = 9}, + [245] = {.lex_state = 80}, + [246] = {.lex_state = 133}, + [247] = {.lex_state = 147, .external_lex_state = 12}, + [248] = {.lex_state = 160}, + [249] = {.lex_state = 69}, + [250] = {.lex_state = 135, .external_lex_state = 14}, + [251] = {.lex_state = 135, .external_lex_state = 14}, + [252] = {.lex_state = 69}, + [253] = {.lex_state = 135, .external_lex_state = 3}, + [254] = {.lex_state = 135, .external_lex_state = 10}, + [255] = {.lex_state = 135, .external_lex_state = 10}, + [256] = {.lex_state = 135, .external_lex_state = 4}, + [257] = {.lex_state = 122, .external_lex_state = 5}, + [258] = {.lex_state = 84}, + [259] = {.lex_state = 63, .external_lex_state = 2}, + [260] = {.lex_state = 141, .external_lex_state = 4}, + [261] = {.lex_state = 219, .external_lex_state = 2}, + [262] = {.lex_state = 63, .external_lex_state = 2}, + [263] = {.lex_state = 63}, + [264] = {.lex_state = 181}, + [265] = {.lex_state = 80}, + [266] = {.lex_state = 80}, + [267] = {.lex_state = 122, .external_lex_state = 5}, + [268] = {.lex_state = 122, .external_lex_state = 5}, + [269] = {.lex_state = 221, .external_lex_state = 7}, + [270] = {.lex_state = 122, .external_lex_state = 7}, + [271] = {.lex_state = 135, .external_lex_state = 4}, + [272] = {.lex_state = 139, .external_lex_state = 8}, + [273] = {.lex_state = 63, .external_lex_state = 2}, + [274] = {.lex_state = 122, .external_lex_state = 7}, + [275] = {.lex_state = 124, .external_lex_state = 9}, + [276] = {.lex_state = 84}, + [277] = {.lex_state = 223, .external_lex_state = 13}, + [278] = {.lex_state = 223, .external_lex_state = 13}, + [279] = {.lex_state = 212}, + [280] = {.lex_state = 147, .external_lex_state = 12}, + [281] = {.lex_state = 80}, + [282] = {.lex_state = 147, .external_lex_state = 11}, + [283] = {.lex_state = 147, .external_lex_state = 11}, + [284] = {.lex_state = 164}, + [285] = {.lex_state = 97}, + [286] = {.lex_state = 147, .external_lex_state = 11}, + [287] = {.lex_state = 147, .external_lex_state = 11}, + [288] = {.lex_state = 147, .external_lex_state = 11}, + [289] = {.lex_state = 69}, + [290] = {.lex_state = 170, .external_lex_state = 6}, + [291] = {.lex_state = 172, .external_lex_state = 16}, + [292] = {.lex_state = 172, .external_lex_state = 16}, + [293] = {.lex_state = 172, .external_lex_state = 16}, + [294] = {.lex_state = 135, .external_lex_state = 4}, + [295] = {.lex_state = 139, .external_lex_state = 8}, + [296] = {.lex_state = 63, .external_lex_state = 2}, + [297] = {.lex_state = 90, .external_lex_state = 4}, + [298] = {.lex_state = 120, .external_lex_state = 8}, + [299] = {.lex_state = 63, .external_lex_state = 2}, + [300] = {.lex_state = 135, .external_lex_state = 4}, + [301] = {.lex_state = 139, .external_lex_state = 8}, + [302] = {.lex_state = 63, .external_lex_state = 2}, + [303] = {.lex_state = 84}, + [304] = {.lex_state = 204, .external_lex_state = 21}, + [305] = {.lex_state = 225}, + [306] = {.lex_state = 212}, + [307] = {.lex_state = 160}, + [308] = {.lex_state = 80}, + [309] = {.lex_state = 160, .external_lex_state = 13}, + [310] = {.lex_state = 232, .external_lex_state = 13}, + [311] = {.lex_state = 164}, + [312] = {.lex_state = 97}, + [313] = {.lex_state = 232, .external_lex_state = 13}, + [314] = {.lex_state = 232, .external_lex_state = 13}, + [315] = {.lex_state = 232, .external_lex_state = 13}, + [316] = {.lex_state = 69}, + [317] = {.lex_state = 170, .external_lex_state = 6}, + [318] = {.lex_state = 172, .external_lex_state = 16}, + [319] = {.lex_state = 172, .external_lex_state = 16}, + [320] = {.lex_state = 172, .external_lex_state = 16}, + [321] = {.lex_state = 135, .external_lex_state = 4}, + [322] = {.lex_state = 139, .external_lex_state = 8}, + [323] = {.lex_state = 63, .external_lex_state = 2}, + [324] = {.lex_state = 90, .external_lex_state = 4}, + [325] = {.lex_state = 120, .external_lex_state = 8}, + [326] = {.lex_state = 63, .external_lex_state = 2}, + [327] = {.lex_state = 135, .external_lex_state = 4}, + [328] = {.lex_state = 139, .external_lex_state = 8}, + [329] = {.lex_state = 63, .external_lex_state = 2}, + [330] = {.lex_state = 84}, + [331] = {.lex_state = 225}, + [332] = {.lex_state = 124, .external_lex_state = 9}, + [333] = {.lex_state = 80}, + [334] = {.lex_state = 90, .external_lex_state = 14}, + [335] = {.lex_state = 135, .external_lex_state = 14}, + [336] = {.lex_state = 164}, + [337] = {.lex_state = 97}, + [338] = {.lex_state = 135, .external_lex_state = 14}, + [339] = {.lex_state = 135, .external_lex_state = 14}, + [340] = {.lex_state = 135, .external_lex_state = 14}, + [341] = {.lex_state = 69}, + [342] = {.lex_state = 170, .external_lex_state = 6}, + [343] = {.lex_state = 172, .external_lex_state = 16}, + [344] = {.lex_state = 172, .external_lex_state = 16}, + [345] = {.lex_state = 172, .external_lex_state = 16}, + [346] = {.lex_state = 135, .external_lex_state = 4}, + [347] = {.lex_state = 139, .external_lex_state = 8}, + [348] = {.lex_state = 63, .external_lex_state = 2}, + [349] = {.lex_state = 90, .external_lex_state = 4}, + [350] = {.lex_state = 120, .external_lex_state = 8}, + [351] = {.lex_state = 63, .external_lex_state = 2}, + [352] = {.lex_state = 135, .external_lex_state = 4}, + [353] = {.lex_state = 139, .external_lex_state = 8}, + [354] = {.lex_state = 63, .external_lex_state = 2}, + [355] = {.lex_state = 90, .external_lex_state = 3}, + [356] = {.lex_state = 80}, + [357] = {.lex_state = 90, .external_lex_state = 10}, + [358] = {.lex_state = 135, .external_lex_state = 10}, + [359] = {.lex_state = 164}, + [360] = {.lex_state = 97}, + [361] = {.lex_state = 135, .external_lex_state = 10}, + [362] = {.lex_state = 135, .external_lex_state = 10}, + [363] = {.lex_state = 135, .external_lex_state = 10}, + [364] = {.lex_state = 69}, + [365] = {.lex_state = 170, .external_lex_state = 6}, + [366] = {.lex_state = 172, .external_lex_state = 16}, + [367] = {.lex_state = 172, .external_lex_state = 16}, + [368] = {.lex_state = 172, .external_lex_state = 16}, + [369] = {.lex_state = 135, .external_lex_state = 4}, + [370] = {.lex_state = 139, .external_lex_state = 8}, + [371] = {.lex_state = 63, .external_lex_state = 2}, + [372] = {.lex_state = 90, .external_lex_state = 4}, + [373] = {.lex_state = 120, .external_lex_state = 8}, + [374] = {.lex_state = 63, .external_lex_state = 2}, + [375] = {.lex_state = 135, .external_lex_state = 4}, + [376] = {.lex_state = 139, .external_lex_state = 8}, + [377] = {.lex_state = 63, .external_lex_state = 2}, + [378] = {.lex_state = 90, .external_lex_state = 4}, + [379] = {.lex_state = 80}, + [380] = {.lex_state = 80, .external_lex_state = 15}, + [381] = {.lex_state = 80, .external_lex_state = 15}, + [382] = {.lex_state = 164}, + [383] = {.lex_state = 97}, + [384] = {.lex_state = 80, .external_lex_state = 15}, + [385] = {.lex_state = 80, .external_lex_state = 15}, + [386] = {.lex_state = 80, .external_lex_state = 15}, + [387] = {.lex_state = 69}, + [388] = {.lex_state = 170, .external_lex_state = 6}, + [389] = {.lex_state = 172, .external_lex_state = 16}, + [390] = {.lex_state = 172, .external_lex_state = 16}, + [391] = {.lex_state = 172, .external_lex_state = 16}, + [392] = {.lex_state = 135, .external_lex_state = 4}, + [393] = {.lex_state = 139, .external_lex_state = 8}, + [394] = {.lex_state = 63, .external_lex_state = 2}, + [395] = {.lex_state = 90, .external_lex_state = 4}, + [396] = {.lex_state = 120, .external_lex_state = 8}, + [397] = {.lex_state = 63, .external_lex_state = 2}, + [398] = {.lex_state = 135, .external_lex_state = 4}, + [399] = {.lex_state = 139, .external_lex_state = 8}, + [400] = {.lex_state = 63, .external_lex_state = 2}, + [401] = {.lex_state = 122, .external_lex_state = 5}, + [402] = {.lex_state = 94, .external_lex_state = 5}, + [403] = {.lex_state = 122, .external_lex_state = 5}, + [404] = {.lex_state = 97, .external_lex_state = 13}, + [405] = {.lex_state = 97, .external_lex_state = 13}, + [406] = {.lex_state = 97, .external_lex_state = 13}, + [407] = {.lex_state = 97}, + [408] = {.lex_state = 69}, + [409] = {.lex_state = 170, .external_lex_state = 6}, + [410] = {.lex_state = 172, .external_lex_state = 16}, + [411] = {.lex_state = 172, .external_lex_state = 16}, + [412] = {.lex_state = 172, .external_lex_state = 16}, + [413] = {.lex_state = 135, .external_lex_state = 4}, + [414] = {.lex_state = 139, .external_lex_state = 8}, + [415] = {.lex_state = 63, .external_lex_state = 2}, + [416] = {.lex_state = 90, .external_lex_state = 4}, + [417] = {.lex_state = 120, .external_lex_state = 8}, + [418] = {.lex_state = 63, .external_lex_state = 2}, + [419] = {.lex_state = 164}, + [420] = {.lex_state = 97}, + [421] = {.lex_state = 80}, + [422] = {.lex_state = 235, .external_lex_state = 16}, + [423] = {.lex_state = 69}, + [424] = {.lex_state = 172, .external_lex_state = 16}, + [425] = {.lex_state = 172, .external_lex_state = 16}, + [426] = {.lex_state = 172, .external_lex_state = 16}, + [427] = {.lex_state = 122, .external_lex_state = 5}, + [428] = {.lex_state = 237, .external_lex_state = 22}, + [429] = {.lex_state = 97}, + [430] = {.lex_state = 104}, + [431] = {.lex_state = 237, .external_lex_state = 22}, + [432] = {.lex_state = 113, .external_lex_state = 6}, + [433] = {.lex_state = 239}, + [434] = {.lex_state = 63, .external_lex_state = 2}, + [435] = {.lex_state = 63, .external_lex_state = 2}, + [436] = {.lex_state = 63, .external_lex_state = 2}, + [437] = {.lex_state = 237, .external_lex_state = 16}, + [438] = {.lex_state = 122, .external_lex_state = 5}, + [439] = {.lex_state = 239}, + [440] = {.lex_state = 237, .external_lex_state = 16}, + [441] = {.lex_state = 122, .external_lex_state = 5}, + [442] = {.lex_state = 239}, + [443] = {.lex_state = 237, .external_lex_state = 16}, + [444] = {.lex_state = 122, .external_lex_state = 5}, + [445] = {.lex_state = 219, .external_lex_state = 2}, + [446] = {.lex_state = 135, .external_lex_state = 4}, + [447] = {.lex_state = 139, .external_lex_state = 8}, + [448] = {.lex_state = 80}, + [449] = {.lex_state = 133}, + [450] = {.lex_state = 147, .external_lex_state = 12}, + [451] = {.lex_state = 160}, + [452] = {.lex_state = 90, .external_lex_state = 3}, + [453] = {.lex_state = 90, .external_lex_state = 4}, + [454] = {.lex_state = 84}, + [455] = {.lex_state = 63, .external_lex_state = 2}, + [456] = {.lex_state = 63, .external_lex_state = 2}, + [457] = {.lex_state = 63, .external_lex_state = 2}, + [458] = {.lex_state = 63}, + [459] = {.lex_state = 80}, + [460] = {.lex_state = 80}, + [461] = {.lex_state = 246, .external_lex_state = 7}, + [462] = {.lex_state = 94, .external_lex_state = 7}, + [463] = {.lex_state = 90, .external_lex_state = 4}, + [464] = {.lex_state = 120, .external_lex_state = 8}, + [465] = {.lex_state = 94, .external_lex_state = 7}, + [466] = {.lex_state = 122, .external_lex_state = 5}, + [467] = {.lex_state = 219, .external_lex_state = 2}, + [468] = {.lex_state = 135, .external_lex_state = 4}, + [469] = {.lex_state = 139, .external_lex_state = 8}, + [470] = {.lex_state = 133}, + [471] = {.lex_state = 141, .external_lex_state = 4}, + [472] = {.lex_state = 139, .external_lex_state = 8}, + [473] = {.lex_state = 90, .external_lex_state = 4}, + [474] = {.lex_state = 120, .external_lex_state = 8}, + [475] = {.lex_state = 141, .external_lex_state = 4}, + [476] = {.lex_state = 104}, + [477] = {.lex_state = 113, .external_lex_state = 6}, + [478] = {.lex_state = 178, .external_lex_state = 17}, + [479] = {.lex_state = 80}, + [480] = {.lex_state = 94, .external_lex_state = 5}, + [481] = {.lex_state = 94, .external_lex_state = 5}, + [482] = {.lex_state = 122, .external_lex_state = 7}, + [483] = {.lex_state = 204, .external_lex_state = 5}, + [484] = {.lex_state = 204, .external_lex_state = 5}, + [485] = {.lex_state = 248, .external_lex_state = 7}, + [486] = {.lex_state = 248, .external_lex_state = 7}, + [487] = {.lex_state = 204, .external_lex_state = 5}, + [488] = {.lex_state = 204, .external_lex_state = 5}, + [489] = {.lex_state = 248, .external_lex_state = 7}, + [490] = {.lex_state = 141, .external_lex_state = 4}, + [491] = {.lex_state = 204, .external_lex_state = 7}, + [492] = {.lex_state = 204, .external_lex_state = 7}, + [493] = {.lex_state = 94, .external_lex_state = 7}, + [494] = {.lex_state = 94, .external_lex_state = 7}, + [495] = {.lex_state = 208, .external_lex_state = 12}, + [496] = {.lex_state = 69, .external_lex_state = 13}, + [497] = {.lex_state = 208, .external_lex_state = 11}, + [498] = {.lex_state = 208, .external_lex_state = 12}, + [499] = {.lex_state = 69, .external_lex_state = 13}, + [500] = {.lex_state = 147, .external_lex_state = 12}, + [501] = {.lex_state = 139, .external_lex_state = 8}, + [502] = {.lex_state = 210, .external_lex_state = 13}, + [503] = {.lex_state = 97}, + [504] = {.lex_state = 104}, + [505] = {.lex_state = 210, .external_lex_state = 13}, + [506] = {.lex_state = 113, .external_lex_state = 6}, + [507] = {.lex_state = 63, .external_lex_state = 2}, + [508] = {.lex_state = 63, .external_lex_state = 2}, + [509] = {.lex_state = 63, .external_lex_state = 2}, + [510] = {.lex_state = 210}, + [511] = {.lex_state = 80}, + [512] = {.lex_state = 120, .external_lex_state = 19}, + [513] = {.lex_state = 139, .external_lex_state = 19}, + [514] = {.lex_state = 164}, + [515] = {.lex_state = 97}, + [516] = {.lex_state = 139, .external_lex_state = 19}, + [517] = {.lex_state = 139, .external_lex_state = 19}, + [518] = {.lex_state = 139, .external_lex_state = 19}, + [519] = {.lex_state = 69}, + [520] = {.lex_state = 170, .external_lex_state = 6}, + [521] = {.lex_state = 172, .external_lex_state = 16}, + [522] = {.lex_state = 172, .external_lex_state = 16}, + [523] = {.lex_state = 172, .external_lex_state = 16}, + [524] = {.lex_state = 135, .external_lex_state = 4}, + [525] = {.lex_state = 139, .external_lex_state = 8}, + [526] = {.lex_state = 63, .external_lex_state = 2}, + [527] = {.lex_state = 90, .external_lex_state = 4}, + [528] = {.lex_state = 120, .external_lex_state = 8}, + [529] = {.lex_state = 63, .external_lex_state = 2}, + [530] = {.lex_state = 135, .external_lex_state = 4}, + [531] = {.lex_state = 139, .external_lex_state = 8}, + [532] = {.lex_state = 63, .external_lex_state = 2}, + [533] = {.lex_state = 250}, + [534] = {.lex_state = 212, .external_lex_state = 4}, + [535] = {.lex_state = 212}, + [536] = {.lex_state = 212, .external_lex_state = 4}, + [537] = {.lex_state = 80}, + [538] = {.lex_state = 212, .external_lex_state = 10}, + [539] = {.lex_state = 254, .external_lex_state = 10}, + [540] = {.lex_state = 164}, + [541] = {.lex_state = 97}, + [542] = {.lex_state = 254, .external_lex_state = 10}, + [543] = {.lex_state = 254, .external_lex_state = 10}, + [544] = {.lex_state = 254, .external_lex_state = 10}, + [545] = {.lex_state = 69}, + [546] = {.lex_state = 170, .external_lex_state = 6}, + [547] = {.lex_state = 172, .external_lex_state = 16}, + [548] = {.lex_state = 172, .external_lex_state = 16}, + [549] = {.lex_state = 172, .external_lex_state = 16}, + [550] = {.lex_state = 135, .external_lex_state = 4}, + [551] = {.lex_state = 139, .external_lex_state = 8}, + [552] = {.lex_state = 63, .external_lex_state = 2}, + [553] = {.lex_state = 90, .external_lex_state = 4}, + [554] = {.lex_state = 120, .external_lex_state = 8}, + [555] = {.lex_state = 63, .external_lex_state = 2}, + [556] = {.lex_state = 135, .external_lex_state = 4}, + [557] = {.lex_state = 139, .external_lex_state = 8}, + [558] = {.lex_state = 63, .external_lex_state = 2}, + [559] = {.lex_state = 126, .external_lex_state = 4}, + [560] = {.lex_state = 84}, + [561] = {.lex_state = 225}, + [562] = {.lex_state = 256, .external_lex_state = 10}, + [563] = {.lex_state = 97}, + [564] = {.lex_state = 104}, + [565] = {.lex_state = 256, .external_lex_state = 10}, + [566] = {.lex_state = 113, .external_lex_state = 6}, + [567] = {.lex_state = 63, .external_lex_state = 2}, + [568] = {.lex_state = 63, .external_lex_state = 2}, + [569] = {.lex_state = 63, .external_lex_state = 2}, + [570] = {.lex_state = 256, .external_lex_state = 4}, + [571] = {.lex_state = 63, .external_lex_state = 2}, + [572] = {.lex_state = 141, .external_lex_state = 4}, + [573] = {.lex_state = 248, .external_lex_state = 7}, + [574] = {.lex_state = 63, .external_lex_state = 2}, + [575] = {.lex_state = 141, .external_lex_state = 4}, + [576] = {.lex_state = 204, .external_lex_state = 7}, + [577] = {.lex_state = 141, .external_lex_state = 4}, + [578] = {.lex_state = 63, .external_lex_state = 2}, + [579] = {.lex_state = 63, .external_lex_state = 2}, + [580] = {.lex_state = 80}, + [581] = {.lex_state = 80}, + [582] = {.lex_state = 63, .external_lex_state = 2}, + [583] = {.lex_state = 80}, + [584] = {.lex_state = 129, .external_lex_state = 10}, + [585] = {.lex_state = 258}, + [586] = {.lex_state = 126, .external_lex_state = 4}, + [587] = {.lex_state = 129, .external_lex_state = 10}, + [588] = {.lex_state = 129, .external_lex_state = 10}, + [589] = {.lex_state = 164}, + [590] = {.lex_state = 258}, + [591] = {.lex_state = 126, .external_lex_state = 4}, + [592] = {.lex_state = 235, .external_lex_state = 16}, + [593] = {.lex_state = 69}, + [594] = {.lex_state = 172, .external_lex_state = 16}, + [595] = {.lex_state = 172, .external_lex_state = 16}, + [596] = {.lex_state = 172, .external_lex_state = 16}, + [597] = {.lex_state = 129, .external_lex_state = 10}, + [598] = {.lex_state = 239}, + [599] = {.lex_state = 237, .external_lex_state = 16}, + [600] = {.lex_state = 129, .external_lex_state = 10}, + [601] = {.lex_state = 239}, + [602] = {.lex_state = 237, .external_lex_state = 16}, + [603] = {.lex_state = 129, .external_lex_state = 10}, + [604] = {.lex_state = 239}, + [605] = {.lex_state = 237, .external_lex_state = 16}, + [606] = {.lex_state = 129, .external_lex_state = 10}, + [607] = {.lex_state = 219, .external_lex_state = 2}, + [608] = {.lex_state = 135, .external_lex_state = 4}, + [609] = {.lex_state = 139, .external_lex_state = 8}, + [610] = {.lex_state = 63, .external_lex_state = 2}, + [611] = {.lex_state = 90, .external_lex_state = 4}, + [612] = {.lex_state = 120, .external_lex_state = 8}, + [613] = {.lex_state = 129, .external_lex_state = 10}, + [614] = {.lex_state = 219, .external_lex_state = 2}, + [615] = {.lex_state = 135, .external_lex_state = 4}, + [616] = {.lex_state = 139, .external_lex_state = 8}, + [617] = {.lex_state = 133}, + [618] = {.lex_state = 260, .external_lex_state = 21}, + [619] = {.lex_state = 90, .external_lex_state = 4}, + [620] = {.lex_state = 120, .external_lex_state = 8}, + [621] = {.lex_state = 214, .external_lex_state = 20}, + [622] = {.lex_state = 63}, + [623] = {.lex_state = 80}, + [624] = {.lex_state = 141, .external_lex_state = 4}, + [625] = {.lex_state = 139, .external_lex_state = 19}, + [626] = {.lex_state = 139, .external_lex_state = 19}, + [627] = {.lex_state = 221, .external_lex_state = 7}, + [628] = {.lex_state = 84}, + [629] = {.lex_state = 262, .external_lex_state = 21}, + [630] = {.lex_state = 221, .external_lex_state = 21}, + [631] = {.lex_state = 124, .external_lex_state = 9}, + [632] = {.lex_state = 135, .external_lex_state = 14}, + [633] = {.lex_state = 135, .external_lex_state = 3}, + [634] = {.lex_state = 135, .external_lex_state = 10}, + [635] = {.lex_state = 135, .external_lex_state = 4}, + [636] = {.lex_state = 122, .external_lex_state = 5}, + [637] = {.lex_state = 133}, + [638] = {.lex_state = 141, .external_lex_state = 4}, + [639] = {.lex_state = 135, .external_lex_state = 4}, + [640] = {.lex_state = 139, .external_lex_state = 8}, + [641] = {.lex_state = 80}, + [642] = {.lex_state = 122, .external_lex_state = 5}, + [643] = {.lex_state = 122, .external_lex_state = 5}, + [644] = {.lex_state = 221, .external_lex_state = 5}, + [645] = {.lex_state = 221, .external_lex_state = 5}, + [646] = {.lex_state = 221, .external_lex_state = 5}, + [647] = {.lex_state = 221, .external_lex_state = 5}, + [648] = {.lex_state = 221, .external_lex_state = 7}, + [649] = {.lex_state = 221, .external_lex_state = 7}, + [650] = {.lex_state = 122, .external_lex_state = 7}, + [651] = {.lex_state = 219, .external_lex_state = 2}, + [652] = {.lex_state = 122, .external_lex_state = 7}, + [653] = {.lex_state = 80, .external_lex_state = 2}, + [654] = {.lex_state = 210}, + [655] = {.lex_state = 80, .external_lex_state = 15}, + [656] = {.lex_state = 80, .external_lex_state = 15}, + [657] = {.lex_state = 212}, + [658] = {.lex_state = 223, .external_lex_state = 13}, + [659] = {.lex_state = 147, .external_lex_state = 12}, + [660] = {.lex_state = 84}, + [661] = {.lex_state = 225}, + [662] = {.lex_state = 147, .external_lex_state = 11}, + [663] = {.lex_state = 147, .external_lex_state = 11}, + [664] = {.lex_state = 147, .external_lex_state = 11}, + [665] = {.lex_state = 164}, + [666] = {.lex_state = 235, .external_lex_state = 16}, + [667] = {.lex_state = 69}, + [668] = {.lex_state = 172, .external_lex_state = 16}, + [669] = {.lex_state = 172, .external_lex_state = 16}, + [670] = {.lex_state = 172, .external_lex_state = 16}, + [671] = {.lex_state = 147, .external_lex_state = 11}, + [672] = {.lex_state = 239}, + [673] = {.lex_state = 237, .external_lex_state = 16}, + [674] = {.lex_state = 147, .external_lex_state = 11}, + [675] = {.lex_state = 239}, + [676] = {.lex_state = 237, .external_lex_state = 16}, + [677] = {.lex_state = 147, .external_lex_state = 11}, + [678] = {.lex_state = 239}, + [679] = {.lex_state = 237, .external_lex_state = 16}, + [680] = {.lex_state = 147, .external_lex_state = 11}, + [681] = {.lex_state = 219, .external_lex_state = 2}, + [682] = {.lex_state = 135, .external_lex_state = 4}, + [683] = {.lex_state = 139, .external_lex_state = 8}, + [684] = {.lex_state = 63, .external_lex_state = 2}, + [685] = {.lex_state = 90, .external_lex_state = 4}, + [686] = {.lex_state = 120, .external_lex_state = 8}, + [687] = {.lex_state = 147, .external_lex_state = 11}, + [688] = {.lex_state = 219, .external_lex_state = 2}, + [689] = {.lex_state = 135, .external_lex_state = 4}, + [690] = {.lex_state = 139, .external_lex_state = 8}, + [691] = {.lex_state = 147, .external_lex_state = 12}, + [692] = {.lex_state = 63}, + [693] = {.lex_state = 80}, + [694] = {.lex_state = 63, .external_lex_state = 18}, + [695] = {.lex_state = 80}, + [696] = {.lex_state = 204, .external_lex_state = 21}, + [697] = {.lex_state = 147, .external_lex_state = 12}, + [698] = {.lex_state = 264}, + [699] = {.lex_state = 232, .external_lex_state = 13}, + [700] = {.lex_state = 160, .external_lex_state = 13}, + [701] = {.lex_state = 232, .external_lex_state = 13}, + [702] = {.lex_state = 164}, + [703] = {.lex_state = 235, .external_lex_state = 16}, + [704] = {.lex_state = 69}, + [705] = {.lex_state = 172, .external_lex_state = 16}, + [706] = {.lex_state = 172, .external_lex_state = 16}, + [707] = {.lex_state = 172, .external_lex_state = 16}, + [708] = {.lex_state = 232, .external_lex_state = 13}, + [709] = {.lex_state = 239}, + [710] = {.lex_state = 237, .external_lex_state = 16}, + [711] = {.lex_state = 232, .external_lex_state = 13}, + [712] = {.lex_state = 239}, + [713] = {.lex_state = 237, .external_lex_state = 16}, + [714] = {.lex_state = 232, .external_lex_state = 13}, + [715] = {.lex_state = 239}, + [716] = {.lex_state = 237, .external_lex_state = 16}, + [717] = {.lex_state = 232, .external_lex_state = 13}, + [718] = {.lex_state = 219, .external_lex_state = 2}, + [719] = {.lex_state = 135, .external_lex_state = 4}, + [720] = {.lex_state = 139, .external_lex_state = 8}, + [721] = {.lex_state = 63, .external_lex_state = 2}, + [722] = {.lex_state = 90, .external_lex_state = 4}, + [723] = {.lex_state = 120, .external_lex_state = 8}, + [724] = {.lex_state = 232, .external_lex_state = 13}, + [725] = {.lex_state = 219, .external_lex_state = 2}, + [726] = {.lex_state = 135, .external_lex_state = 4}, + [727] = {.lex_state = 139, .external_lex_state = 8}, + [728] = {.lex_state = 264}, + [729] = {.lex_state = 264}, + [730] = {.lex_state = 135, .external_lex_state = 3}, + [731] = {.lex_state = 210}, + [732] = {.lex_state = 90, .external_lex_state = 14}, + [733] = {.lex_state = 90, .external_lex_state = 14}, + [734] = {.lex_state = 135, .external_lex_state = 14}, + [735] = {.lex_state = 90, .external_lex_state = 14}, + [736] = {.lex_state = 135, .external_lex_state = 14}, + [737] = {.lex_state = 164}, + [738] = {.lex_state = 235, .external_lex_state = 16}, + [739] = {.lex_state = 69}, + [740] = {.lex_state = 172, .external_lex_state = 16}, + [741] = {.lex_state = 172, .external_lex_state = 16}, + [742] = {.lex_state = 172, .external_lex_state = 16}, + [743] = {.lex_state = 135, .external_lex_state = 14}, + [744] = {.lex_state = 239}, + [745] = {.lex_state = 237, .external_lex_state = 16}, + [746] = {.lex_state = 135, .external_lex_state = 14}, + [747] = {.lex_state = 239}, + [748] = {.lex_state = 237, .external_lex_state = 16}, + [749] = {.lex_state = 135, .external_lex_state = 14}, + [750] = {.lex_state = 239}, + [751] = {.lex_state = 237, .external_lex_state = 16}, + [752] = {.lex_state = 135, .external_lex_state = 14}, + [753] = {.lex_state = 219, .external_lex_state = 2}, + [754] = {.lex_state = 135, .external_lex_state = 4}, + [755] = {.lex_state = 139, .external_lex_state = 8}, + [756] = {.lex_state = 63, .external_lex_state = 2}, + [757] = {.lex_state = 90, .external_lex_state = 4}, + [758] = {.lex_state = 120, .external_lex_state = 8}, + [759] = {.lex_state = 135, .external_lex_state = 14}, + [760] = {.lex_state = 219, .external_lex_state = 2}, + [761] = {.lex_state = 135, .external_lex_state = 4}, + [762] = {.lex_state = 139, .external_lex_state = 8}, + [763] = {.lex_state = 135, .external_lex_state = 10}, + [764] = {.lex_state = 90, .external_lex_state = 10}, + [765] = {.lex_state = 135, .external_lex_state = 10}, + [766] = {.lex_state = 164}, + [767] = {.lex_state = 235, .external_lex_state = 16}, + [768] = {.lex_state = 69}, + [769] = {.lex_state = 172, .external_lex_state = 16}, + [770] = {.lex_state = 172, .external_lex_state = 16}, + [771] = {.lex_state = 172, .external_lex_state = 16}, + [772] = {.lex_state = 135, .external_lex_state = 10}, + [773] = {.lex_state = 239}, + [774] = {.lex_state = 237, .external_lex_state = 16}, + [775] = {.lex_state = 135, .external_lex_state = 10}, + [776] = {.lex_state = 239}, + [777] = {.lex_state = 237, .external_lex_state = 16}, + [778] = {.lex_state = 135, .external_lex_state = 10}, + [779] = {.lex_state = 239}, + [780] = {.lex_state = 237, .external_lex_state = 16}, + [781] = {.lex_state = 135, .external_lex_state = 10}, + [782] = {.lex_state = 219, .external_lex_state = 2}, + [783] = {.lex_state = 135, .external_lex_state = 4}, + [784] = {.lex_state = 139, .external_lex_state = 8}, + [785] = {.lex_state = 63, .external_lex_state = 2}, + [786] = {.lex_state = 90, .external_lex_state = 4}, + [787] = {.lex_state = 120, .external_lex_state = 8}, + [788] = {.lex_state = 135, .external_lex_state = 10}, + [789] = {.lex_state = 219, .external_lex_state = 2}, + [790] = {.lex_state = 135, .external_lex_state = 4}, + [791] = {.lex_state = 139, .external_lex_state = 8}, + [792] = {.lex_state = 80, .external_lex_state = 15}, + [793] = {.lex_state = 80, .external_lex_state = 15}, + [794] = {.lex_state = 80, .external_lex_state = 15}, + [795] = {.lex_state = 164}, + [796] = {.lex_state = 235, .external_lex_state = 16}, + [797] = {.lex_state = 69}, + [798] = {.lex_state = 172, .external_lex_state = 16}, + [799] = {.lex_state = 172, .external_lex_state = 16}, + [800] = {.lex_state = 172, .external_lex_state = 16}, + [801] = {.lex_state = 80, .external_lex_state = 15}, + [802] = {.lex_state = 239}, + [803] = {.lex_state = 237, .external_lex_state = 16}, + [804] = {.lex_state = 80, .external_lex_state = 15}, + [805] = {.lex_state = 239}, + [806] = {.lex_state = 237, .external_lex_state = 16}, + [807] = {.lex_state = 80, .external_lex_state = 15}, + [808] = {.lex_state = 239}, + [809] = {.lex_state = 237, .external_lex_state = 16}, + [810] = {.lex_state = 80, .external_lex_state = 15}, + [811] = {.lex_state = 219, .external_lex_state = 2}, + [812] = {.lex_state = 135, .external_lex_state = 4}, + [813] = {.lex_state = 139, .external_lex_state = 8}, + [814] = {.lex_state = 63, .external_lex_state = 2}, + [815] = {.lex_state = 90, .external_lex_state = 4}, + [816] = {.lex_state = 120, .external_lex_state = 8}, + [817] = {.lex_state = 80, .external_lex_state = 15}, + [818] = {.lex_state = 219, .external_lex_state = 2}, + [819] = {.lex_state = 135, .external_lex_state = 4}, + [820] = {.lex_state = 139, .external_lex_state = 8}, + [821] = {.lex_state = 97}, + [822] = {.lex_state = 235, .external_lex_state = 16}, + [823] = {.lex_state = 69}, + [824] = {.lex_state = 172, .external_lex_state = 16}, + [825] = {.lex_state = 172, .external_lex_state = 16}, + [826] = {.lex_state = 172, .external_lex_state = 16}, + [827] = {.lex_state = 97, .external_lex_state = 13}, + [828] = {.lex_state = 239}, + [829] = {.lex_state = 237, .external_lex_state = 16}, + [830] = {.lex_state = 97, .external_lex_state = 13}, + [831] = {.lex_state = 239}, + [832] = {.lex_state = 237, .external_lex_state = 16}, + [833] = {.lex_state = 97, .external_lex_state = 13}, + [834] = {.lex_state = 239}, + [835] = {.lex_state = 237, .external_lex_state = 16}, + [836] = {.lex_state = 97, .external_lex_state = 13}, + [837] = {.lex_state = 219, .external_lex_state = 2}, + [838] = {.lex_state = 135, .external_lex_state = 4}, + [839] = {.lex_state = 139, .external_lex_state = 8}, + [840] = {.lex_state = 63, .external_lex_state = 2}, + [841] = {.lex_state = 90, .external_lex_state = 4}, + [842] = {.lex_state = 120, .external_lex_state = 8}, + [843] = {.lex_state = 122, .external_lex_state = 5}, + [844] = {.lex_state = 164}, + [845] = {.lex_state = 208, .external_lex_state = 11}, + [846] = {.lex_state = 208, .external_lex_state = 11}, + [847] = {.lex_state = 208, .external_lex_state = 11}, + [848] = {.lex_state = 122, .external_lex_state = 5}, + [849] = {.lex_state = 214, .external_lex_state = 22}, + [850] = {.lex_state = 97}, + [851] = {.lex_state = 104}, + [852] = {.lex_state = 214, .external_lex_state = 22}, + [853] = {.lex_state = 113, .external_lex_state = 6}, + [854] = {.lex_state = 63, .external_lex_state = 2}, + [855] = {.lex_state = 63, .external_lex_state = 2}, + [856] = {.lex_state = 63, .external_lex_state = 2}, + [857] = {.lex_state = 214, .external_lex_state = 16}, + [858] = {.lex_state = 235, .external_lex_state = 16}, + [859] = {.lex_state = 122, .external_lex_state = 5}, + [860] = {.lex_state = 239}, + [861] = {.lex_state = 237, .external_lex_state = 16}, + [862] = {.lex_state = 122, .external_lex_state = 5}, + [863] = {.lex_state = 239}, + [864] = {.lex_state = 237, .external_lex_state = 16}, + [865] = {.lex_state = 239}, + [866] = {.lex_state = 237, .external_lex_state = 16}, + [867] = {.lex_state = 80}, + [868] = {.lex_state = 237, .external_lex_state = 22}, + [869] = {.lex_state = 237, .external_lex_state = 22}, + [870] = {.lex_state = 164}, + [871] = {.lex_state = 97}, + [872] = {.lex_state = 237, .external_lex_state = 22}, + [873] = {.lex_state = 237, .external_lex_state = 22}, + [874] = {.lex_state = 237, .external_lex_state = 22}, + [875] = {.lex_state = 69}, + [876] = {.lex_state = 170, .external_lex_state = 6}, + [877] = {.lex_state = 172, .external_lex_state = 16}, + [878] = {.lex_state = 172, .external_lex_state = 16}, + [879] = {.lex_state = 172, .external_lex_state = 16}, + [880] = {.lex_state = 237, .external_lex_state = 16}, + [881] = {.lex_state = 135, .external_lex_state = 4}, + [882] = {.lex_state = 139, .external_lex_state = 8}, + [883] = {.lex_state = 63, .external_lex_state = 2}, + [884] = {.lex_state = 90, .external_lex_state = 4}, + [885] = {.lex_state = 120, .external_lex_state = 8}, + [886] = {.lex_state = 63, .external_lex_state = 2}, + [887] = {.lex_state = 135, .external_lex_state = 4}, + [888] = {.lex_state = 139, .external_lex_state = 8}, + [889] = {.lex_state = 63, .external_lex_state = 2}, + [890] = {.lex_state = 122, .external_lex_state = 5}, + [891] = {.lex_state = 237, .external_lex_state = 16}, + [892] = {.lex_state = 237, .external_lex_state = 16}, + [893] = {.lex_state = 122, .external_lex_state = 5}, + [894] = {.lex_state = 237, .external_lex_state = 16}, + [895] = {.lex_state = 122, .external_lex_state = 5}, + [896] = {.lex_state = 219, .external_lex_state = 2}, + [897] = {.lex_state = 246, .external_lex_state = 7}, + [898] = {.lex_state = 84}, + [899] = {.lex_state = 266, .external_lex_state = 21}, + [900] = {.lex_state = 246, .external_lex_state = 21}, + [901] = {.lex_state = 133}, + [902] = {.lex_state = 120, .external_lex_state = 8}, + [903] = {.lex_state = 90, .external_lex_state = 4}, + [904] = {.lex_state = 120, .external_lex_state = 8}, + [905] = {.lex_state = 80}, + [906] = {.lex_state = 246, .external_lex_state = 5}, + [907] = {.lex_state = 246, .external_lex_state = 5}, + [908] = {.lex_state = 246, .external_lex_state = 5}, + [909] = {.lex_state = 246, .external_lex_state = 5}, + [910] = {.lex_state = 246, .external_lex_state = 7}, + [911] = {.lex_state = 246, .external_lex_state = 7}, + [912] = {.lex_state = 63, .external_lex_state = 2}, + [913] = {.lex_state = 94, .external_lex_state = 7}, + [914] = {.lex_state = 122, .external_lex_state = 5}, + [915] = {.lex_state = 219, .external_lex_state = 2}, + [916] = {.lex_state = 216, .external_lex_state = 21}, + [917] = {.lex_state = 178, .external_lex_state = 17}, + [918] = {.lex_state = 178, .external_lex_state = 17}, + [919] = {.lex_state = 69}, + [920] = {.lex_state = 170, .external_lex_state = 6}, + [921] = {.lex_state = 172, .external_lex_state = 16}, + [922] = {.lex_state = 172, .external_lex_state = 16}, + [923] = {.lex_state = 172, .external_lex_state = 16}, + [924] = {.lex_state = 141, .external_lex_state = 4}, + [925] = {.lex_state = 178, .external_lex_state = 17}, + [926] = {.lex_state = 204, .external_lex_state = 5}, + [927] = {.lex_state = 204, .external_lex_state = 5}, + [928] = {.lex_state = 248, .external_lex_state = 7}, + [929] = {.lex_state = 204, .external_lex_state = 5}, + [930] = {.lex_state = 141, .external_lex_state = 4}, + [931] = {.lex_state = 204, .external_lex_state = 7}, + [932] = {.lex_state = 69, .external_lex_state = 13}, + [933] = {.lex_state = 69}, + [934] = {.lex_state = 208, .external_lex_state = 11}, + [935] = {.lex_state = 69, .external_lex_state = 13}, + [936] = {.lex_state = 69}, + [937] = {.lex_state = 80}, + [938] = {.lex_state = 210, .external_lex_state = 13}, + [939] = {.lex_state = 210, .external_lex_state = 13}, + [940] = {.lex_state = 164}, + [941] = {.lex_state = 97}, + [942] = {.lex_state = 210, .external_lex_state = 13}, + [943] = {.lex_state = 210, .external_lex_state = 13}, + [944] = {.lex_state = 210, .external_lex_state = 13}, + [945] = {.lex_state = 69}, + [946] = {.lex_state = 170, .external_lex_state = 6}, + [947] = {.lex_state = 172, .external_lex_state = 16}, + [948] = {.lex_state = 172, .external_lex_state = 16}, + [949] = {.lex_state = 172, .external_lex_state = 16}, + [950] = {.lex_state = 135, .external_lex_state = 4}, + [951] = {.lex_state = 139, .external_lex_state = 8}, + [952] = {.lex_state = 63, .external_lex_state = 2}, + [953] = {.lex_state = 90, .external_lex_state = 4}, + [954] = {.lex_state = 120, .external_lex_state = 8}, + [955] = {.lex_state = 63, .external_lex_state = 2}, + [956] = {.lex_state = 135, .external_lex_state = 4}, + [957] = {.lex_state = 139, .external_lex_state = 8}, + [958] = {.lex_state = 63, .external_lex_state = 2}, + [959] = {.lex_state = 139, .external_lex_state = 8}, + [960] = {.lex_state = 210}, + [961] = {.lex_state = 139, .external_lex_state = 19}, + [962] = {.lex_state = 120, .external_lex_state = 19}, + [963] = {.lex_state = 139, .external_lex_state = 19}, + [964] = {.lex_state = 164}, + [965] = {.lex_state = 235, .external_lex_state = 16}, + [966] = {.lex_state = 69}, + [967] = {.lex_state = 172, .external_lex_state = 16}, + [968] = {.lex_state = 172, .external_lex_state = 16}, + [969] = {.lex_state = 172, .external_lex_state = 16}, + [970] = {.lex_state = 139, .external_lex_state = 19}, + [971] = {.lex_state = 239}, + [972] = {.lex_state = 237, .external_lex_state = 16}, + [973] = {.lex_state = 139, .external_lex_state = 19}, + [974] = {.lex_state = 239}, + [975] = {.lex_state = 237, .external_lex_state = 16}, + [976] = {.lex_state = 139, .external_lex_state = 19}, + [977] = {.lex_state = 239}, + [978] = {.lex_state = 237, .external_lex_state = 16}, + [979] = {.lex_state = 139, .external_lex_state = 19}, + [980] = {.lex_state = 219, .external_lex_state = 2}, + [981] = {.lex_state = 135, .external_lex_state = 4}, + [982] = {.lex_state = 139, .external_lex_state = 8}, + [983] = {.lex_state = 63, .external_lex_state = 2}, + [984] = {.lex_state = 90, .external_lex_state = 4}, + [985] = {.lex_state = 120, .external_lex_state = 8}, + [986] = {.lex_state = 139, .external_lex_state = 19}, + [987] = {.lex_state = 219, .external_lex_state = 2}, + [988] = {.lex_state = 135, .external_lex_state = 4}, + [989] = {.lex_state = 139, .external_lex_state = 8}, + [990] = {.lex_state = 268}, + [991] = {.lex_state = 84}, + [992] = {.lex_state = 84}, + [993] = {.lex_state = 270, .external_lex_state = 13}, + [994] = {.lex_state = 97}, + [995] = {.lex_state = 104}, + [996] = {.lex_state = 270, .external_lex_state = 13}, + [997] = {.lex_state = 113, .external_lex_state = 6}, + [998] = {.lex_state = 63, .external_lex_state = 2}, + [999] = {.lex_state = 63, .external_lex_state = 2}, + [1000] = {.lex_state = 63, .external_lex_state = 2}, + [1001] = {.lex_state = 270}, + [1002] = {.lex_state = 250}, + [1003] = {.lex_state = 212, .external_lex_state = 4}, + [1004] = {.lex_state = 254, .external_lex_state = 10}, + [1005] = {.lex_state = 212, .external_lex_state = 10}, + [1006] = {.lex_state = 254, .external_lex_state = 10}, + [1007] = {.lex_state = 164}, + [1008] = {.lex_state = 235, .external_lex_state = 16}, + [1009] = {.lex_state = 69}, + [1010] = {.lex_state = 172, .external_lex_state = 16}, + [1011] = {.lex_state = 172, .external_lex_state = 16}, + [1012] = {.lex_state = 172, .external_lex_state = 16}, + [1013] = {.lex_state = 254, .external_lex_state = 10}, + [1014] = {.lex_state = 239}, + [1015] = {.lex_state = 237, .external_lex_state = 16}, + [1016] = {.lex_state = 254, .external_lex_state = 10}, + [1017] = {.lex_state = 239}, + [1018] = {.lex_state = 237, .external_lex_state = 16}, + [1019] = {.lex_state = 254, .external_lex_state = 10}, + [1020] = {.lex_state = 239}, + [1021] = {.lex_state = 237, .external_lex_state = 16}, + [1022] = {.lex_state = 254, .external_lex_state = 10}, + [1023] = {.lex_state = 219, .external_lex_state = 2}, + [1024] = {.lex_state = 135, .external_lex_state = 4}, + [1025] = {.lex_state = 139, .external_lex_state = 8}, + [1026] = {.lex_state = 63, .external_lex_state = 2}, + [1027] = {.lex_state = 90, .external_lex_state = 4}, + [1028] = {.lex_state = 120, .external_lex_state = 8}, + [1029] = {.lex_state = 254, .external_lex_state = 10}, + [1030] = {.lex_state = 219, .external_lex_state = 2}, + [1031] = {.lex_state = 135, .external_lex_state = 4}, + [1032] = {.lex_state = 139, .external_lex_state = 8}, + [1033] = {.lex_state = 212, .external_lex_state = 4}, + [1034] = {.lex_state = 212, .external_lex_state = 4}, + [1035] = {.lex_state = 212, .external_lex_state = 4}, + [1036] = {.lex_state = 80}, + [1037] = {.lex_state = 256, .external_lex_state = 10}, + [1038] = {.lex_state = 256, .external_lex_state = 10}, + [1039] = {.lex_state = 164}, + [1040] = {.lex_state = 97}, + [1041] = {.lex_state = 256, .external_lex_state = 10}, + [1042] = {.lex_state = 256, .external_lex_state = 10}, + [1043] = {.lex_state = 256, .external_lex_state = 10}, + [1044] = {.lex_state = 69}, + [1045] = {.lex_state = 170, .external_lex_state = 6}, + [1046] = {.lex_state = 172, .external_lex_state = 16}, + [1047] = {.lex_state = 172, .external_lex_state = 16}, + [1048] = {.lex_state = 172, .external_lex_state = 16}, + [1049] = {.lex_state = 135, .external_lex_state = 4}, + [1050] = {.lex_state = 139, .external_lex_state = 8}, + [1051] = {.lex_state = 63, .external_lex_state = 2}, + [1052] = {.lex_state = 90, .external_lex_state = 4}, + [1053] = {.lex_state = 120, .external_lex_state = 8}, + [1054] = {.lex_state = 63, .external_lex_state = 2}, + [1055] = {.lex_state = 135, .external_lex_state = 4}, + [1056] = {.lex_state = 139, .external_lex_state = 8}, + [1057] = {.lex_state = 63, .external_lex_state = 2}, + [1058] = {.lex_state = 80}, + [1059] = {.lex_state = 256, .external_lex_state = 4}, + [1060] = {.lex_state = 141, .external_lex_state = 4}, + [1061] = {.lex_state = 63, .external_lex_state = 2}, + [1062] = {.lex_state = 248, .external_lex_state = 7}, + [1063] = {.lex_state = 63, .external_lex_state = 2}, + [1064] = {.lex_state = 141, .external_lex_state = 4}, + [1065] = {.lex_state = 80}, + [1066] = {.lex_state = 63, .external_lex_state = 2}, + [1067] = {.lex_state = 141, .external_lex_state = 4}, + [1068] = {.lex_state = 80}, + [1069] = {.lex_state = 63, .external_lex_state = 2}, + [1070] = {.lex_state = 80}, + [1071] = {.lex_state = 80}, + [1072] = {.lex_state = 141, .external_lex_state = 4}, + [1073] = {.lex_state = 272, .external_lex_state = 13}, + [1074] = {.lex_state = 272, .external_lex_state = 13}, + [1075] = {.lex_state = 275}, + [1076] = {.lex_state = 272}, + [1077] = {.lex_state = 80}, + [1078] = {.lex_state = 258}, + [1079] = {.lex_state = 129, .external_lex_state = 10}, + [1080] = {.lex_state = 141, .external_lex_state = 4}, + [1081] = {.lex_state = 275}, + [1082] = {.lex_state = 80}, + [1083] = {.lex_state = 258}, + [1084] = {.lex_state = 129, .external_lex_state = 10}, + [1085] = {.lex_state = 214, .external_lex_state = 22}, + [1086] = {.lex_state = 214, .external_lex_state = 22}, + [1087] = {.lex_state = 214, .external_lex_state = 16}, + [1088] = {.lex_state = 235, .external_lex_state = 16}, + [1089] = {.lex_state = 129, .external_lex_state = 10}, + [1090] = {.lex_state = 239}, + [1091] = {.lex_state = 237, .external_lex_state = 16}, + [1092] = {.lex_state = 129, .external_lex_state = 10}, + [1093] = {.lex_state = 239}, + [1094] = {.lex_state = 237, .external_lex_state = 16}, + [1095] = {.lex_state = 239}, + [1096] = {.lex_state = 237, .external_lex_state = 16}, + [1097] = {.lex_state = 237, .external_lex_state = 16}, + [1098] = {.lex_state = 129, .external_lex_state = 10}, + [1099] = {.lex_state = 237, .external_lex_state = 16}, + [1100] = {.lex_state = 129, .external_lex_state = 10}, + [1101] = {.lex_state = 237, .external_lex_state = 16}, + [1102] = {.lex_state = 129, .external_lex_state = 10}, + [1103] = {.lex_state = 219, .external_lex_state = 2}, + [1104] = {.lex_state = 63, .external_lex_state = 2}, + [1105] = {.lex_state = 129, .external_lex_state = 10}, + [1106] = {.lex_state = 219, .external_lex_state = 2}, + [1107] = {.lex_state = 216, .external_lex_state = 21}, + [1108] = {.lex_state = 214, .external_lex_state = 20}, + [1109] = {.lex_state = 260, .external_lex_state = 21}, + [1110] = {.lex_state = 214, .external_lex_state = 20}, + [1111] = {.lex_state = 80}, + [1112] = {.lex_state = 141, .external_lex_state = 10}, + [1113] = {.lex_state = 141, .external_lex_state = 10}, + [1114] = {.lex_state = 141, .external_lex_state = 4}, + [1115] = {.lex_state = 139, .external_lex_state = 19}, + [1116] = {.lex_state = 221, .external_lex_state = 7}, + [1117] = {.lex_state = 133}, + [1118] = {.lex_state = 63}, + [1119] = {.lex_state = 80}, + [1120] = {.lex_state = 63}, + [1121] = {.lex_state = 80}, + [1122] = {.lex_state = 80}, + [1123] = {.lex_state = 221, .external_lex_state = 21}, + [1124] = {.lex_state = 135, .external_lex_state = 14}, + [1125] = {.lex_state = 135, .external_lex_state = 14}, + [1126] = {.lex_state = 135, .external_lex_state = 14}, + [1127] = {.lex_state = 135, .external_lex_state = 10}, + [1128] = {.lex_state = 262, .external_lex_state = 21}, + [1129] = {.lex_state = 221, .external_lex_state = 5}, + [1130] = {.lex_state = 221, .external_lex_state = 5}, + [1131] = {.lex_state = 221, .external_lex_state = 5}, + [1132] = {.lex_state = 141, .external_lex_state = 4}, + [1133] = {.lex_state = 221, .external_lex_state = 7}, + [1134] = {.lex_state = 80, .external_lex_state = 2}, + [1135] = {.lex_state = 210}, + [1136] = {.lex_state = 223, .external_lex_state = 13}, + [1137] = {.lex_state = 147, .external_lex_state = 11}, + [1138] = {.lex_state = 147, .external_lex_state = 11}, + [1139] = {.lex_state = 214, .external_lex_state = 22}, + [1140] = {.lex_state = 214, .external_lex_state = 22}, + [1141] = {.lex_state = 214, .external_lex_state = 16}, + [1142] = {.lex_state = 235, .external_lex_state = 16}, + [1143] = {.lex_state = 147, .external_lex_state = 11}, + [1144] = {.lex_state = 239}, + [1145] = {.lex_state = 237, .external_lex_state = 16}, + [1146] = {.lex_state = 147, .external_lex_state = 11}, + [1147] = {.lex_state = 239}, + [1148] = {.lex_state = 237, .external_lex_state = 16}, + [1149] = {.lex_state = 239}, + [1150] = {.lex_state = 237, .external_lex_state = 16}, + [1151] = {.lex_state = 237, .external_lex_state = 16}, + [1152] = {.lex_state = 147, .external_lex_state = 11}, + [1153] = {.lex_state = 237, .external_lex_state = 16}, + [1154] = {.lex_state = 147, .external_lex_state = 11}, + [1155] = {.lex_state = 237, .external_lex_state = 16}, + [1156] = {.lex_state = 147, .external_lex_state = 11}, + [1157] = {.lex_state = 219, .external_lex_state = 2}, + [1158] = {.lex_state = 63, .external_lex_state = 2}, + [1159] = {.lex_state = 147, .external_lex_state = 11}, + [1160] = {.lex_state = 219, .external_lex_state = 2}, + [1161] = {.lex_state = 80}, + [1162] = {.lex_state = 204, .external_lex_state = 23}, + [1163] = {.lex_state = 97}, + [1164] = {.lex_state = 104}, + [1165] = {.lex_state = 204, .external_lex_state = 23}, + [1166] = {.lex_state = 113, .external_lex_state = 6}, + [1167] = {.lex_state = 63, .external_lex_state = 2}, + [1168] = {.lex_state = 63, .external_lex_state = 2}, + [1169] = {.lex_state = 63, .external_lex_state = 2}, + [1170] = {.lex_state = 248, .external_lex_state = 21}, + [1171] = {.lex_state = 248, .external_lex_state = 21}, + [1172] = {.lex_state = 204, .external_lex_state = 23}, + [1173] = {.lex_state = 204, .external_lex_state = 23}, + [1174] = {.lex_state = 248, .external_lex_state = 21}, + [1175] = {.lex_state = 204, .external_lex_state = 21}, + [1176] = {.lex_state = 232, .external_lex_state = 13}, + [1177] = {.lex_state = 232, .external_lex_state = 13}, + [1178] = {.lex_state = 214, .external_lex_state = 22}, + [1179] = {.lex_state = 214, .external_lex_state = 22}, + [1180] = {.lex_state = 214, .external_lex_state = 16}, + [1181] = {.lex_state = 235, .external_lex_state = 16}, + [1182] = {.lex_state = 232, .external_lex_state = 13}, + [1183] = {.lex_state = 239}, + [1184] = {.lex_state = 237, .external_lex_state = 16}, + [1185] = {.lex_state = 232, .external_lex_state = 13}, + [1186] = {.lex_state = 239}, + [1187] = {.lex_state = 237, .external_lex_state = 16}, + [1188] = {.lex_state = 239}, + [1189] = {.lex_state = 237, .external_lex_state = 16}, + [1190] = {.lex_state = 237, .external_lex_state = 16}, + [1191] = {.lex_state = 232, .external_lex_state = 13}, + [1192] = {.lex_state = 237, .external_lex_state = 16}, + [1193] = {.lex_state = 232, .external_lex_state = 13}, + [1194] = {.lex_state = 237, .external_lex_state = 16}, + [1195] = {.lex_state = 232, .external_lex_state = 13}, + [1196] = {.lex_state = 219, .external_lex_state = 2}, + [1197] = {.lex_state = 63, .external_lex_state = 2}, + [1198] = {.lex_state = 232, .external_lex_state = 13}, + [1199] = {.lex_state = 219, .external_lex_state = 2}, + [1200] = {.lex_state = 135, .external_lex_state = 3}, + [1201] = {.lex_state = 210}, + [1202] = {.lex_state = 135, .external_lex_state = 14}, + [1203] = {.lex_state = 135, .external_lex_state = 14}, + [1204] = {.lex_state = 214, .external_lex_state = 22}, + [1205] = {.lex_state = 214, .external_lex_state = 22}, + [1206] = {.lex_state = 214, .external_lex_state = 16}, + [1207] = {.lex_state = 235, .external_lex_state = 16}, + [1208] = {.lex_state = 135, .external_lex_state = 14}, + [1209] = {.lex_state = 239}, + [1210] = {.lex_state = 237, .external_lex_state = 16}, + [1211] = {.lex_state = 135, .external_lex_state = 14}, + [1212] = {.lex_state = 239}, + [1213] = {.lex_state = 237, .external_lex_state = 16}, + [1214] = {.lex_state = 239}, + [1215] = {.lex_state = 237, .external_lex_state = 16}, + [1216] = {.lex_state = 237, .external_lex_state = 16}, + [1217] = {.lex_state = 135, .external_lex_state = 14}, + [1218] = {.lex_state = 237, .external_lex_state = 16}, + [1219] = {.lex_state = 135, .external_lex_state = 14}, + [1220] = {.lex_state = 237, .external_lex_state = 16}, + [1221] = {.lex_state = 135, .external_lex_state = 14}, + [1222] = {.lex_state = 219, .external_lex_state = 2}, + [1223] = {.lex_state = 63, .external_lex_state = 2}, + [1224] = {.lex_state = 135, .external_lex_state = 14}, + [1225] = {.lex_state = 219, .external_lex_state = 2}, + [1226] = {.lex_state = 135, .external_lex_state = 10}, + [1227] = {.lex_state = 135, .external_lex_state = 10}, + [1228] = {.lex_state = 214, .external_lex_state = 22}, + [1229] = {.lex_state = 214, .external_lex_state = 22}, + [1230] = {.lex_state = 214, .external_lex_state = 16}, + [1231] = {.lex_state = 235, .external_lex_state = 16}, + [1232] = {.lex_state = 135, .external_lex_state = 10}, + [1233] = {.lex_state = 239}, + [1234] = {.lex_state = 237, .external_lex_state = 16}, + [1235] = {.lex_state = 135, .external_lex_state = 10}, + [1236] = {.lex_state = 239}, + [1237] = {.lex_state = 237, .external_lex_state = 16}, + [1238] = {.lex_state = 239}, + [1239] = {.lex_state = 237, .external_lex_state = 16}, + [1240] = {.lex_state = 237, .external_lex_state = 16}, + [1241] = {.lex_state = 135, .external_lex_state = 10}, + [1242] = {.lex_state = 237, .external_lex_state = 16}, + [1243] = {.lex_state = 135, .external_lex_state = 10}, + [1244] = {.lex_state = 237, .external_lex_state = 16}, + [1245] = {.lex_state = 135, .external_lex_state = 10}, + [1246] = {.lex_state = 219, .external_lex_state = 2}, + [1247] = {.lex_state = 63, .external_lex_state = 2}, + [1248] = {.lex_state = 135, .external_lex_state = 10}, + [1249] = {.lex_state = 219, .external_lex_state = 2}, + [1250] = {.lex_state = 80, .external_lex_state = 15}, + [1251] = {.lex_state = 80, .external_lex_state = 15}, + [1252] = {.lex_state = 214, .external_lex_state = 22}, + [1253] = {.lex_state = 214, .external_lex_state = 22}, + [1254] = {.lex_state = 214, .external_lex_state = 16}, + [1255] = {.lex_state = 235, .external_lex_state = 16}, + [1256] = {.lex_state = 80, .external_lex_state = 15}, + [1257] = {.lex_state = 239}, + [1258] = {.lex_state = 237, .external_lex_state = 16}, + [1259] = {.lex_state = 80, .external_lex_state = 15}, + [1260] = {.lex_state = 239}, + [1261] = {.lex_state = 237, .external_lex_state = 16}, + [1262] = {.lex_state = 239}, + [1263] = {.lex_state = 237, .external_lex_state = 16}, + [1264] = {.lex_state = 237, .external_lex_state = 16}, + [1265] = {.lex_state = 80, .external_lex_state = 15}, + [1266] = {.lex_state = 237, .external_lex_state = 16}, + [1267] = {.lex_state = 80, .external_lex_state = 15}, + [1268] = {.lex_state = 237, .external_lex_state = 16}, + [1269] = {.lex_state = 80, .external_lex_state = 15}, + [1270] = {.lex_state = 219, .external_lex_state = 2}, + [1271] = {.lex_state = 63, .external_lex_state = 2}, + [1272] = {.lex_state = 80, .external_lex_state = 15}, + [1273] = {.lex_state = 219, .external_lex_state = 2}, + [1274] = {.lex_state = 97, .external_lex_state = 13}, + [1275] = {.lex_state = 214, .external_lex_state = 22}, + [1276] = {.lex_state = 214, .external_lex_state = 22}, + [1277] = {.lex_state = 214, .external_lex_state = 16}, + [1278] = {.lex_state = 235, .external_lex_state = 16}, + [1279] = {.lex_state = 97, .external_lex_state = 13}, + [1280] = {.lex_state = 239}, + [1281] = {.lex_state = 237, .external_lex_state = 16}, + [1282] = {.lex_state = 97, .external_lex_state = 13}, + [1283] = {.lex_state = 239}, + [1284] = {.lex_state = 237, .external_lex_state = 16}, + [1285] = {.lex_state = 239}, + [1286] = {.lex_state = 237, .external_lex_state = 16}, + [1287] = {.lex_state = 237, .external_lex_state = 16}, + [1288] = {.lex_state = 97, .external_lex_state = 13}, + [1289] = {.lex_state = 237, .external_lex_state = 16}, + [1290] = {.lex_state = 97, .external_lex_state = 13}, + [1291] = {.lex_state = 237, .external_lex_state = 16}, + [1292] = {.lex_state = 97, .external_lex_state = 13}, + [1293] = {.lex_state = 219, .external_lex_state = 2}, + [1294] = {.lex_state = 63, .external_lex_state = 2}, + [1295] = {.lex_state = 208, .external_lex_state = 12}, + [1296] = {.lex_state = 172, .external_lex_state = 22}, + [1297] = {.lex_state = 208, .external_lex_state = 12}, + [1298] = {.lex_state = 172, .external_lex_state = 22}, + [1299] = {.lex_state = 147, .external_lex_state = 12}, + [1300] = {.lex_state = 80}, + [1301] = {.lex_state = 122, .external_lex_state = 5}, + [1302] = {.lex_state = 214, .external_lex_state = 22}, + [1303] = {.lex_state = 214, .external_lex_state = 22}, + [1304] = {.lex_state = 164}, + [1305] = {.lex_state = 97}, + [1306] = {.lex_state = 214, .external_lex_state = 22}, + [1307] = {.lex_state = 214, .external_lex_state = 22}, + [1308] = {.lex_state = 214, .external_lex_state = 22}, + [1309] = {.lex_state = 122, .external_lex_state = 5}, + [1310] = {.lex_state = 69}, + [1311] = {.lex_state = 170, .external_lex_state = 6}, + [1312] = {.lex_state = 172, .external_lex_state = 16}, + [1313] = {.lex_state = 172, .external_lex_state = 16}, + [1314] = {.lex_state = 172, .external_lex_state = 16}, + [1315] = {.lex_state = 135, .external_lex_state = 4}, + [1316] = {.lex_state = 139, .external_lex_state = 8}, + [1317] = {.lex_state = 63, .external_lex_state = 2}, + [1318] = {.lex_state = 90, .external_lex_state = 4}, + [1319] = {.lex_state = 120, .external_lex_state = 8}, + [1320] = {.lex_state = 63, .external_lex_state = 2}, + [1321] = {.lex_state = 135, .external_lex_state = 4}, + [1322] = {.lex_state = 139, .external_lex_state = 8}, + [1323] = {.lex_state = 63, .external_lex_state = 2}, + [1324] = {.lex_state = 214, .external_lex_state = 22}, + [1325] = {.lex_state = 214, .external_lex_state = 22}, + [1326] = {.lex_state = 214, .external_lex_state = 16}, + [1327] = {.lex_state = 237, .external_lex_state = 16}, + [1328] = {.lex_state = 122, .external_lex_state = 5}, + [1329] = {.lex_state = 237, .external_lex_state = 16}, + [1330] = {.lex_state = 122, .external_lex_state = 5}, + [1331] = {.lex_state = 237, .external_lex_state = 16}, + [1332] = {.lex_state = 237, .external_lex_state = 22}, + [1333] = {.lex_state = 237, .external_lex_state = 22}, + [1334] = {.lex_state = 237, .external_lex_state = 22}, + [1335] = {.lex_state = 164}, + [1336] = {.lex_state = 235, .external_lex_state = 16}, + [1337] = {.lex_state = 69}, + [1338] = {.lex_state = 172, .external_lex_state = 16}, + [1339] = {.lex_state = 172, .external_lex_state = 16}, + [1340] = {.lex_state = 172, .external_lex_state = 16}, + [1341] = {.lex_state = 237, .external_lex_state = 22}, + [1342] = {.lex_state = 239}, + [1343] = {.lex_state = 237, .external_lex_state = 16}, + [1344] = {.lex_state = 237, .external_lex_state = 22}, + [1345] = {.lex_state = 239}, + [1346] = {.lex_state = 237, .external_lex_state = 16}, + [1347] = {.lex_state = 237, .external_lex_state = 22}, + [1348] = {.lex_state = 239}, + [1349] = {.lex_state = 237, .external_lex_state = 16}, + [1350] = {.lex_state = 122, .external_lex_state = 5}, + [1351] = {.lex_state = 237, .external_lex_state = 16}, + [1352] = {.lex_state = 237, .external_lex_state = 22}, + [1353] = {.lex_state = 219, .external_lex_state = 2}, + [1354] = {.lex_state = 135, .external_lex_state = 4}, + [1355] = {.lex_state = 139, .external_lex_state = 8}, + [1356] = {.lex_state = 63, .external_lex_state = 2}, + [1357] = {.lex_state = 90, .external_lex_state = 4}, + [1358] = {.lex_state = 120, .external_lex_state = 8}, + [1359] = {.lex_state = 237, .external_lex_state = 22}, + [1360] = {.lex_state = 219, .external_lex_state = 2}, + [1361] = {.lex_state = 135, .external_lex_state = 4}, + [1362] = {.lex_state = 139, .external_lex_state = 8}, + [1363] = {.lex_state = 122, .external_lex_state = 5}, + [1364] = {.lex_state = 237, .external_lex_state = 16}, + [1365] = {.lex_state = 122, .external_lex_state = 5}, + [1366] = {.lex_state = 237, .external_lex_state = 16}, + [1367] = {.lex_state = 122, .external_lex_state = 5}, + [1368] = {.lex_state = 246, .external_lex_state = 7}, + [1369] = {.lex_state = 133}, + [1370] = {.lex_state = 63}, + [1371] = {.lex_state = 80}, + [1372] = {.lex_state = 63}, + [1373] = {.lex_state = 80}, + [1374] = {.lex_state = 80}, + [1375] = {.lex_state = 246, .external_lex_state = 21}, + [1376] = {.lex_state = 266, .external_lex_state = 21}, + [1377] = {.lex_state = 246, .external_lex_state = 5}, + [1378] = {.lex_state = 246, .external_lex_state = 5}, + [1379] = {.lex_state = 246, .external_lex_state = 5}, + [1380] = {.lex_state = 246, .external_lex_state = 7}, + [1381] = {.lex_state = 122, .external_lex_state = 5}, + [1382] = {.lex_state = 141, .external_lex_state = 4}, + [1383] = {.lex_state = 235, .external_lex_state = 16}, + [1384] = {.lex_state = 69}, + [1385] = {.lex_state = 172, .external_lex_state = 16}, + [1386] = {.lex_state = 172, .external_lex_state = 16}, + [1387] = {.lex_state = 172, .external_lex_state = 16}, + [1388] = {.lex_state = 178, .external_lex_state = 17}, + [1389] = {.lex_state = 239}, + [1390] = {.lex_state = 237, .external_lex_state = 16}, + [1391] = {.lex_state = 178, .external_lex_state = 17}, + [1392] = {.lex_state = 239}, + [1393] = {.lex_state = 237, .external_lex_state = 16}, + [1394] = {.lex_state = 178, .external_lex_state = 17}, + [1395] = {.lex_state = 239}, + [1396] = {.lex_state = 237, .external_lex_state = 16}, + [1397] = {.lex_state = 204, .external_lex_state = 5}, + [1398] = {.lex_state = 141, .external_lex_state = 4}, + [1399] = {.lex_state = 69}, + [1400] = {.lex_state = 69}, + [1401] = {.lex_state = 210, .external_lex_state = 13}, + [1402] = {.lex_state = 210, .external_lex_state = 13}, + [1403] = {.lex_state = 210, .external_lex_state = 13}, + [1404] = {.lex_state = 164}, + [1405] = {.lex_state = 235, .external_lex_state = 16}, + [1406] = {.lex_state = 69}, + [1407] = {.lex_state = 172, .external_lex_state = 16}, + [1408] = {.lex_state = 172, .external_lex_state = 16}, + [1409] = {.lex_state = 172, .external_lex_state = 16}, + [1410] = {.lex_state = 210, .external_lex_state = 13}, + [1411] = {.lex_state = 239}, + [1412] = {.lex_state = 237, .external_lex_state = 16}, + [1413] = {.lex_state = 210, .external_lex_state = 13}, + [1414] = {.lex_state = 239}, + [1415] = {.lex_state = 237, .external_lex_state = 16}, + [1416] = {.lex_state = 210, .external_lex_state = 13}, + [1417] = {.lex_state = 239}, + [1418] = {.lex_state = 237, .external_lex_state = 16}, + [1419] = {.lex_state = 210, .external_lex_state = 13}, + [1420] = {.lex_state = 219, .external_lex_state = 2}, + [1421] = {.lex_state = 135, .external_lex_state = 4}, + [1422] = {.lex_state = 139, .external_lex_state = 8}, + [1423] = {.lex_state = 63, .external_lex_state = 2}, + [1424] = {.lex_state = 90, .external_lex_state = 4}, + [1425] = {.lex_state = 120, .external_lex_state = 8}, + [1426] = {.lex_state = 210, .external_lex_state = 13}, + [1427] = {.lex_state = 219, .external_lex_state = 2}, + [1428] = {.lex_state = 135, .external_lex_state = 4}, + [1429] = {.lex_state = 139, .external_lex_state = 8}, + [1430] = {.lex_state = 139, .external_lex_state = 19}, + [1431] = {.lex_state = 139, .external_lex_state = 19}, + [1432] = {.lex_state = 214, .external_lex_state = 22}, + [1433] = {.lex_state = 214, .external_lex_state = 22}, + [1434] = {.lex_state = 214, .external_lex_state = 16}, + [1435] = {.lex_state = 235, .external_lex_state = 16}, + [1436] = {.lex_state = 139, .external_lex_state = 19}, + [1437] = {.lex_state = 239}, + [1438] = {.lex_state = 237, .external_lex_state = 16}, + [1439] = {.lex_state = 139, .external_lex_state = 19}, + [1440] = {.lex_state = 239}, + [1441] = {.lex_state = 237, .external_lex_state = 16}, + [1442] = {.lex_state = 239}, + [1443] = {.lex_state = 237, .external_lex_state = 16}, + [1444] = {.lex_state = 237, .external_lex_state = 16}, + [1445] = {.lex_state = 139, .external_lex_state = 19}, + [1446] = {.lex_state = 237, .external_lex_state = 16}, + [1447] = {.lex_state = 139, .external_lex_state = 19}, + [1448] = {.lex_state = 237, .external_lex_state = 16}, + [1449] = {.lex_state = 139, .external_lex_state = 19}, + [1450] = {.lex_state = 219, .external_lex_state = 2}, + [1451] = {.lex_state = 63, .external_lex_state = 2}, + [1452] = {.lex_state = 139, .external_lex_state = 19}, + [1453] = {.lex_state = 219, .external_lex_state = 2}, + [1454] = {.lex_state = 214, .external_lex_state = 20}, + [1455] = {.lex_state = 141, .external_lex_state = 4}, + [1456] = {.lex_state = 212}, + [1457] = {.lex_state = 270}, + [1458] = {.lex_state = 80}, + [1459] = {.lex_state = 270, .external_lex_state = 13}, + [1460] = {.lex_state = 270, .external_lex_state = 13}, + [1461] = {.lex_state = 164}, + [1462] = {.lex_state = 97}, + [1463] = {.lex_state = 270, .external_lex_state = 13}, + [1464] = {.lex_state = 270, .external_lex_state = 13}, + [1465] = {.lex_state = 270, .external_lex_state = 13}, + [1466] = {.lex_state = 69}, + [1467] = {.lex_state = 170, .external_lex_state = 6}, + [1468] = {.lex_state = 172, .external_lex_state = 16}, + [1469] = {.lex_state = 172, .external_lex_state = 16}, + [1470] = {.lex_state = 172, .external_lex_state = 16}, + [1471] = {.lex_state = 135, .external_lex_state = 4}, + [1472] = {.lex_state = 139, .external_lex_state = 8}, + [1473] = {.lex_state = 63, .external_lex_state = 2}, + [1474] = {.lex_state = 90, .external_lex_state = 4}, + [1475] = {.lex_state = 120, .external_lex_state = 8}, + [1476] = {.lex_state = 63, .external_lex_state = 2}, + [1477] = {.lex_state = 135, .external_lex_state = 4}, + [1478] = {.lex_state = 139, .external_lex_state = 8}, + [1479] = {.lex_state = 63, .external_lex_state = 2}, + [1480] = {.lex_state = 268}, + [1481] = {.lex_state = 84}, + [1482] = {.lex_state = 225}, + [1483] = {.lex_state = 270}, + [1484] = {.lex_state = 254, .external_lex_state = 10}, + [1485] = {.lex_state = 254, .external_lex_state = 10}, + [1486] = {.lex_state = 214, .external_lex_state = 22}, + [1487] = {.lex_state = 214, .external_lex_state = 22}, + [1488] = {.lex_state = 214, .external_lex_state = 16}, + [1489] = {.lex_state = 235, .external_lex_state = 16}, + [1490] = {.lex_state = 254, .external_lex_state = 10}, + [1491] = {.lex_state = 239}, + [1492] = {.lex_state = 237, .external_lex_state = 16}, + [1493] = {.lex_state = 254, .external_lex_state = 10}, + [1494] = {.lex_state = 239}, + [1495] = {.lex_state = 237, .external_lex_state = 16}, + [1496] = {.lex_state = 239}, + [1497] = {.lex_state = 237, .external_lex_state = 16}, + [1498] = {.lex_state = 237, .external_lex_state = 16}, + [1499] = {.lex_state = 254, .external_lex_state = 10}, + [1500] = {.lex_state = 237, .external_lex_state = 16}, + [1501] = {.lex_state = 254, .external_lex_state = 10}, + [1502] = {.lex_state = 237, .external_lex_state = 16}, + [1503] = {.lex_state = 254, .external_lex_state = 10}, + [1504] = {.lex_state = 219, .external_lex_state = 2}, + [1505] = {.lex_state = 63, .external_lex_state = 2}, + [1506] = {.lex_state = 254, .external_lex_state = 10}, + [1507] = {.lex_state = 219, .external_lex_state = 2}, + [1508] = {.lex_state = 250}, + [1509] = {.lex_state = 256, .external_lex_state = 10}, + [1510] = {.lex_state = 256, .external_lex_state = 10}, + [1511] = {.lex_state = 256, .external_lex_state = 10}, + [1512] = {.lex_state = 164}, + [1513] = {.lex_state = 235, .external_lex_state = 16}, + [1514] = {.lex_state = 69}, + [1515] = {.lex_state = 172, .external_lex_state = 16}, + [1516] = {.lex_state = 172, .external_lex_state = 16}, + [1517] = {.lex_state = 172, .external_lex_state = 16}, + [1518] = {.lex_state = 256, .external_lex_state = 10}, + [1519] = {.lex_state = 239}, + [1520] = {.lex_state = 237, .external_lex_state = 16}, + [1521] = {.lex_state = 256, .external_lex_state = 10}, + [1522] = {.lex_state = 239}, + [1523] = {.lex_state = 237, .external_lex_state = 16}, + [1524] = {.lex_state = 256, .external_lex_state = 10}, + [1525] = {.lex_state = 239}, + [1526] = {.lex_state = 237, .external_lex_state = 16}, + [1527] = {.lex_state = 256, .external_lex_state = 10}, + [1528] = {.lex_state = 219, .external_lex_state = 2}, + [1529] = {.lex_state = 135, .external_lex_state = 4}, + [1530] = {.lex_state = 139, .external_lex_state = 8}, + [1531] = {.lex_state = 63, .external_lex_state = 2}, + [1532] = {.lex_state = 90, .external_lex_state = 4}, + [1533] = {.lex_state = 120, .external_lex_state = 8}, + [1534] = {.lex_state = 256, .external_lex_state = 10}, + [1535] = {.lex_state = 219, .external_lex_state = 2}, + [1536] = {.lex_state = 135, .external_lex_state = 4}, + [1537] = {.lex_state = 139, .external_lex_state = 8}, + [1538] = {.lex_state = 141, .external_lex_state = 4}, + [1539] = {.lex_state = 141, .external_lex_state = 4}, + [1540] = {.lex_state = 63, .external_lex_state = 2}, + [1541] = {.lex_state = 63, .external_lex_state = 2}, + [1542] = {.lex_state = 141, .external_lex_state = 4}, + [1543] = {.lex_state = 80}, + [1544] = {.lex_state = 80}, + [1545] = {.lex_state = 277, .external_lex_state = 2}, + [1546] = {.lex_state = 272}, + [1547] = {.lex_state = 272, .external_lex_state = 13}, + [1548] = {.lex_state = 277, .external_lex_state = 2}, + [1549] = {.lex_state = 272}, + [1550] = {.lex_state = 141, .external_lex_state = 4}, + [1551] = {.lex_state = 275}, + [1552] = {.lex_state = 80}, + [1553] = {.lex_state = 141, .external_lex_state = 4}, + [1554] = {.lex_state = 80}, + [1555] = {.lex_state = 141, .external_lex_state = 4}, + [1556] = {.lex_state = 275}, + [1557] = {.lex_state = 141, .external_lex_state = 4}, + [1558] = {.lex_state = 80}, + [1559] = {.lex_state = 129, .external_lex_state = 10}, + [1560] = {.lex_state = 129, .external_lex_state = 10}, + [1561] = {.lex_state = 214, .external_lex_state = 22}, + [1562] = {.lex_state = 214, .external_lex_state = 22}, + [1563] = {.lex_state = 214, .external_lex_state = 16}, + [1564] = {.lex_state = 237, .external_lex_state = 16}, + [1565] = {.lex_state = 129, .external_lex_state = 10}, + [1566] = {.lex_state = 237, .external_lex_state = 16}, + [1567] = {.lex_state = 129, .external_lex_state = 10}, + [1568] = {.lex_state = 237, .external_lex_state = 16}, + [1569] = {.lex_state = 129, .external_lex_state = 10}, + [1570] = {.lex_state = 237, .external_lex_state = 16}, + [1571] = {.lex_state = 129, .external_lex_state = 10}, + [1572] = {.lex_state = 237, .external_lex_state = 16}, + [1573] = {.lex_state = 129, .external_lex_state = 10}, + [1574] = {.lex_state = 237, .external_lex_state = 16}, + [1575] = {.lex_state = 129, .external_lex_state = 10}, + [1576] = {.lex_state = 129, .external_lex_state = 10}, + [1577] = {.lex_state = 141, .external_lex_state = 4}, + [1578] = {.lex_state = 141, .external_lex_state = 10}, + [1579] = {.lex_state = 141, .external_lex_state = 10}, + [1580] = {.lex_state = 141, .external_lex_state = 4}, + [1581] = {.lex_state = 141, .external_lex_state = 10}, + [1582] = {.lex_state = 139, .external_lex_state = 19}, + [1583] = {.lex_state = 262, .external_lex_state = 21}, + [1584] = {.lex_state = 80}, + [1585] = {.lex_state = 279, .external_lex_state = 10}, + [1586] = {.lex_state = 279, .external_lex_state = 10}, + [1587] = {.lex_state = 80}, + [1588] = {.lex_state = 221, .external_lex_state = 23}, + [1589] = {.lex_state = 221, .external_lex_state = 23}, + [1590] = {.lex_state = 221, .external_lex_state = 23}, + [1591] = {.lex_state = 221, .external_lex_state = 23}, + [1592] = {.lex_state = 221, .external_lex_state = 21}, + [1593] = {.lex_state = 221, .external_lex_state = 5}, + [1594] = {.lex_state = 80, .external_lex_state = 2}, + [1595] = {.lex_state = 147, .external_lex_state = 11}, + [1596] = {.lex_state = 147, .external_lex_state = 11}, + [1597] = {.lex_state = 214, .external_lex_state = 22}, + [1598] = {.lex_state = 214, .external_lex_state = 22}, + [1599] = {.lex_state = 214, .external_lex_state = 16}, + [1600] = {.lex_state = 237, .external_lex_state = 16}, + [1601] = {.lex_state = 147, .external_lex_state = 11}, + [1602] = {.lex_state = 237, .external_lex_state = 16}, + [1603] = {.lex_state = 147, .external_lex_state = 11}, + [1604] = {.lex_state = 237, .external_lex_state = 16}, + [1605] = {.lex_state = 147, .external_lex_state = 11}, + [1606] = {.lex_state = 237, .external_lex_state = 16}, + [1607] = {.lex_state = 147, .external_lex_state = 11}, + [1608] = {.lex_state = 237, .external_lex_state = 16}, + [1609] = {.lex_state = 147, .external_lex_state = 11}, + [1610] = {.lex_state = 237, .external_lex_state = 16}, + [1611] = {.lex_state = 147, .external_lex_state = 11}, + [1612] = {.lex_state = 147, .external_lex_state = 11}, + [1613] = {.lex_state = 204, .external_lex_state = 23}, + [1614] = {.lex_state = 204, .external_lex_state = 23}, + [1615] = {.lex_state = 248, .external_lex_state = 21}, + [1616] = {.lex_state = 80}, + [1617] = {.lex_state = 204, .external_lex_state = 23}, + [1618] = {.lex_state = 248, .external_lex_state = 23}, + [1619] = {.lex_state = 164}, + [1620] = {.lex_state = 97}, + [1621] = {.lex_state = 248, .external_lex_state = 23}, + [1622] = {.lex_state = 248, .external_lex_state = 23}, + [1623] = {.lex_state = 248, .external_lex_state = 23}, + [1624] = {.lex_state = 69}, + [1625] = {.lex_state = 170, .external_lex_state = 6}, + [1626] = {.lex_state = 172, .external_lex_state = 16}, + [1627] = {.lex_state = 172, .external_lex_state = 16}, + [1628] = {.lex_state = 172, .external_lex_state = 16}, + [1629] = {.lex_state = 135, .external_lex_state = 4}, + [1630] = {.lex_state = 139, .external_lex_state = 8}, + [1631] = {.lex_state = 63, .external_lex_state = 2}, + [1632] = {.lex_state = 90, .external_lex_state = 4}, + [1633] = {.lex_state = 120, .external_lex_state = 8}, + [1634] = {.lex_state = 63, .external_lex_state = 2}, + [1635] = {.lex_state = 135, .external_lex_state = 4}, + [1636] = {.lex_state = 139, .external_lex_state = 8}, + [1637] = {.lex_state = 63, .external_lex_state = 2}, + [1638] = {.lex_state = 232, .external_lex_state = 13}, + [1639] = {.lex_state = 232, .external_lex_state = 13}, + [1640] = {.lex_state = 214, .external_lex_state = 22}, + [1641] = {.lex_state = 214, .external_lex_state = 22}, + [1642] = {.lex_state = 214, .external_lex_state = 16}, + [1643] = {.lex_state = 237, .external_lex_state = 16}, + [1644] = {.lex_state = 232, .external_lex_state = 13}, + [1645] = {.lex_state = 237, .external_lex_state = 16}, + [1646] = {.lex_state = 232, .external_lex_state = 13}, + [1647] = {.lex_state = 237, .external_lex_state = 16}, + [1648] = {.lex_state = 232, .external_lex_state = 13}, + [1649] = {.lex_state = 237, .external_lex_state = 16}, + [1650] = {.lex_state = 232, .external_lex_state = 13}, + [1651] = {.lex_state = 237, .external_lex_state = 16}, + [1652] = {.lex_state = 232, .external_lex_state = 13}, + [1653] = {.lex_state = 237, .external_lex_state = 16}, + [1654] = {.lex_state = 232, .external_lex_state = 13}, + [1655] = {.lex_state = 232, .external_lex_state = 13}, + [1656] = {.lex_state = 135, .external_lex_state = 3}, + [1657] = {.lex_state = 135, .external_lex_state = 14}, + [1658] = {.lex_state = 135, .external_lex_state = 14}, + [1659] = {.lex_state = 214, .external_lex_state = 22}, + [1660] = {.lex_state = 214, .external_lex_state = 22}, + [1661] = {.lex_state = 214, .external_lex_state = 16}, + [1662] = {.lex_state = 237, .external_lex_state = 16}, + [1663] = {.lex_state = 135, .external_lex_state = 14}, + [1664] = {.lex_state = 237, .external_lex_state = 16}, + [1665] = {.lex_state = 135, .external_lex_state = 14}, + [1666] = {.lex_state = 237, .external_lex_state = 16}, + [1667] = {.lex_state = 135, .external_lex_state = 14}, + [1668] = {.lex_state = 237, .external_lex_state = 16}, + [1669] = {.lex_state = 135, .external_lex_state = 14}, + [1670] = {.lex_state = 237, .external_lex_state = 16}, + [1671] = {.lex_state = 135, .external_lex_state = 14}, + [1672] = {.lex_state = 237, .external_lex_state = 16}, + [1673] = {.lex_state = 135, .external_lex_state = 14}, + [1674] = {.lex_state = 135, .external_lex_state = 14}, + [1675] = {.lex_state = 135, .external_lex_state = 10}, + [1676] = {.lex_state = 135, .external_lex_state = 10}, + [1677] = {.lex_state = 214, .external_lex_state = 22}, + [1678] = {.lex_state = 214, .external_lex_state = 22}, + [1679] = {.lex_state = 214, .external_lex_state = 16}, + [1680] = {.lex_state = 237, .external_lex_state = 16}, + [1681] = {.lex_state = 135, .external_lex_state = 10}, + [1682] = {.lex_state = 237, .external_lex_state = 16}, + [1683] = {.lex_state = 135, .external_lex_state = 10}, + [1684] = {.lex_state = 237, .external_lex_state = 16}, + [1685] = {.lex_state = 135, .external_lex_state = 10}, + [1686] = {.lex_state = 237, .external_lex_state = 16}, + [1687] = {.lex_state = 135, .external_lex_state = 10}, + [1688] = {.lex_state = 237, .external_lex_state = 16}, + [1689] = {.lex_state = 135, .external_lex_state = 10}, + [1690] = {.lex_state = 237, .external_lex_state = 16}, + [1691] = {.lex_state = 135, .external_lex_state = 10}, + [1692] = {.lex_state = 135, .external_lex_state = 10}, + [1693] = {.lex_state = 80, .external_lex_state = 15}, + [1694] = {.lex_state = 80, .external_lex_state = 15}, + [1695] = {.lex_state = 214, .external_lex_state = 22}, + [1696] = {.lex_state = 214, .external_lex_state = 22}, + [1697] = {.lex_state = 214, .external_lex_state = 16}, + [1698] = {.lex_state = 237, .external_lex_state = 16}, + [1699] = {.lex_state = 80, .external_lex_state = 15}, + [1700] = {.lex_state = 237, .external_lex_state = 16}, + [1701] = {.lex_state = 80, .external_lex_state = 15}, + [1702] = {.lex_state = 237, .external_lex_state = 16}, + [1703] = {.lex_state = 80, .external_lex_state = 15}, + [1704] = {.lex_state = 237, .external_lex_state = 16}, + [1705] = {.lex_state = 80, .external_lex_state = 15}, + [1706] = {.lex_state = 237, .external_lex_state = 16}, + [1707] = {.lex_state = 80, .external_lex_state = 15}, + [1708] = {.lex_state = 237, .external_lex_state = 16}, + [1709] = {.lex_state = 80, .external_lex_state = 15}, + [1710] = {.lex_state = 80, .external_lex_state = 15}, + [1711] = {.lex_state = 97, .external_lex_state = 13}, + [1712] = {.lex_state = 97, .external_lex_state = 13}, + [1713] = {.lex_state = 214, .external_lex_state = 22}, + [1714] = {.lex_state = 214, .external_lex_state = 22}, + [1715] = {.lex_state = 214, .external_lex_state = 16}, + [1716] = {.lex_state = 237, .external_lex_state = 16}, + [1717] = {.lex_state = 97, .external_lex_state = 13}, + [1718] = {.lex_state = 237, .external_lex_state = 16}, + [1719] = {.lex_state = 97, .external_lex_state = 13}, + [1720] = {.lex_state = 237, .external_lex_state = 16}, + [1721] = {.lex_state = 97, .external_lex_state = 13}, + [1722] = {.lex_state = 237, .external_lex_state = 16}, + [1723] = {.lex_state = 97, .external_lex_state = 13}, + [1724] = {.lex_state = 237, .external_lex_state = 16}, + [1725] = {.lex_state = 97, .external_lex_state = 13}, + [1726] = {.lex_state = 237, .external_lex_state = 16}, + [1727] = {.lex_state = 97, .external_lex_state = 13}, + [1728] = {.lex_state = 172, .external_lex_state = 22}, + [1729] = {.lex_state = 172, .external_lex_state = 16}, + [1730] = {.lex_state = 172, .external_lex_state = 22}, + [1731] = {.lex_state = 172, .external_lex_state = 16}, + [1732] = {.lex_state = 214, .external_lex_state = 22}, + [1733] = {.lex_state = 214, .external_lex_state = 22}, + [1734] = {.lex_state = 214, .external_lex_state = 22}, + [1735] = {.lex_state = 164}, + [1736] = {.lex_state = 235, .external_lex_state = 16}, + [1737] = {.lex_state = 69}, + [1738] = {.lex_state = 172, .external_lex_state = 16}, + [1739] = {.lex_state = 172, .external_lex_state = 16}, + [1740] = {.lex_state = 172, .external_lex_state = 16}, + [1741] = {.lex_state = 214, .external_lex_state = 22}, + [1742] = {.lex_state = 239}, + [1743] = {.lex_state = 237, .external_lex_state = 16}, + [1744] = {.lex_state = 214, .external_lex_state = 22}, + [1745] = {.lex_state = 239}, + [1746] = {.lex_state = 237, .external_lex_state = 16}, + [1747] = {.lex_state = 214, .external_lex_state = 22}, + [1748] = {.lex_state = 239}, + [1749] = {.lex_state = 237, .external_lex_state = 16}, + [1750] = {.lex_state = 214, .external_lex_state = 22}, + [1751] = {.lex_state = 219, .external_lex_state = 2}, + [1752] = {.lex_state = 135, .external_lex_state = 4}, + [1753] = {.lex_state = 139, .external_lex_state = 8}, + [1754] = {.lex_state = 63, .external_lex_state = 2}, + [1755] = {.lex_state = 90, .external_lex_state = 4}, + [1756] = {.lex_state = 120, .external_lex_state = 8}, + [1757] = {.lex_state = 214, .external_lex_state = 22}, + [1758] = {.lex_state = 219, .external_lex_state = 2}, + [1759] = {.lex_state = 135, .external_lex_state = 4}, + [1760] = {.lex_state = 139, .external_lex_state = 8}, + [1761] = {.lex_state = 122, .external_lex_state = 5}, + [1762] = {.lex_state = 122, .external_lex_state = 5}, + [1763] = {.lex_state = 122, .external_lex_state = 5}, + [1764] = {.lex_state = 237, .external_lex_state = 16}, + [1765] = {.lex_state = 122, .external_lex_state = 5}, + [1766] = {.lex_state = 237, .external_lex_state = 16}, + [1767] = {.lex_state = 122, .external_lex_state = 5}, + [1768] = {.lex_state = 237, .external_lex_state = 16}, + [1769] = {.lex_state = 237, .external_lex_state = 22}, + [1770] = {.lex_state = 237, .external_lex_state = 22}, + [1771] = {.lex_state = 214, .external_lex_state = 22}, + [1772] = {.lex_state = 214, .external_lex_state = 22}, + [1773] = {.lex_state = 214, .external_lex_state = 16}, + [1774] = {.lex_state = 235, .external_lex_state = 16}, + [1775] = {.lex_state = 237, .external_lex_state = 22}, + [1776] = {.lex_state = 239}, + [1777] = {.lex_state = 237, .external_lex_state = 16}, + [1778] = {.lex_state = 237, .external_lex_state = 22}, + [1779] = {.lex_state = 239}, + [1780] = {.lex_state = 237, .external_lex_state = 16}, + [1781] = {.lex_state = 239}, + [1782] = {.lex_state = 237, .external_lex_state = 16}, + [1783] = {.lex_state = 237, .external_lex_state = 16}, + [1784] = {.lex_state = 237, .external_lex_state = 22}, + [1785] = {.lex_state = 237, .external_lex_state = 16}, + [1786] = {.lex_state = 237, .external_lex_state = 22}, + [1787] = {.lex_state = 237, .external_lex_state = 16}, + [1788] = {.lex_state = 122, .external_lex_state = 5}, + [1789] = {.lex_state = 237, .external_lex_state = 22}, + [1790] = {.lex_state = 219, .external_lex_state = 2}, + [1791] = {.lex_state = 63, .external_lex_state = 2}, + [1792] = {.lex_state = 237, .external_lex_state = 22}, + [1793] = {.lex_state = 219, .external_lex_state = 2}, + [1794] = {.lex_state = 122, .external_lex_state = 5}, + [1795] = {.lex_state = 122, .external_lex_state = 5}, + [1796] = {.lex_state = 266, .external_lex_state = 21}, + [1797] = {.lex_state = 80}, + [1798] = {.lex_state = 141, .external_lex_state = 10}, + [1799] = {.lex_state = 141, .external_lex_state = 10}, + [1800] = {.lex_state = 80}, + [1801] = {.lex_state = 246, .external_lex_state = 23}, + [1802] = {.lex_state = 246, .external_lex_state = 23}, + [1803] = {.lex_state = 246, .external_lex_state = 23}, + [1804] = {.lex_state = 246, .external_lex_state = 23}, + [1805] = {.lex_state = 246, .external_lex_state = 21}, + [1806] = {.lex_state = 246, .external_lex_state = 5}, + [1807] = {.lex_state = 178, .external_lex_state = 17}, + [1808] = {.lex_state = 214, .external_lex_state = 22}, + [1809] = {.lex_state = 214, .external_lex_state = 22}, + [1810] = {.lex_state = 214, .external_lex_state = 16}, + [1811] = {.lex_state = 235, .external_lex_state = 16}, + [1812] = {.lex_state = 178, .external_lex_state = 17}, + [1813] = {.lex_state = 239}, + [1814] = {.lex_state = 237, .external_lex_state = 16}, + [1815] = {.lex_state = 178, .external_lex_state = 17}, + [1816] = {.lex_state = 239}, + [1817] = {.lex_state = 237, .external_lex_state = 16}, + [1818] = {.lex_state = 239}, + [1819] = {.lex_state = 237, .external_lex_state = 16}, + [1820] = {.lex_state = 237, .external_lex_state = 16}, + [1821] = {.lex_state = 178, .external_lex_state = 17}, + [1822] = {.lex_state = 237, .external_lex_state = 16}, + [1823] = {.lex_state = 178, .external_lex_state = 17}, + [1824] = {.lex_state = 237, .external_lex_state = 16}, + [1825] = {.lex_state = 210, .external_lex_state = 13}, + [1826] = {.lex_state = 210, .external_lex_state = 13}, + [1827] = {.lex_state = 214, .external_lex_state = 22}, + [1828] = {.lex_state = 214, .external_lex_state = 22}, + [1829] = {.lex_state = 214, .external_lex_state = 16}, + [1830] = {.lex_state = 235, .external_lex_state = 16}, + [1831] = {.lex_state = 210, .external_lex_state = 13}, + [1832] = {.lex_state = 239}, + [1833] = {.lex_state = 237, .external_lex_state = 16}, + [1834] = {.lex_state = 210, .external_lex_state = 13}, + [1835] = {.lex_state = 239}, + [1836] = {.lex_state = 237, .external_lex_state = 16}, + [1837] = {.lex_state = 239}, + [1838] = {.lex_state = 237, .external_lex_state = 16}, + [1839] = {.lex_state = 237, .external_lex_state = 16}, + [1840] = {.lex_state = 210, .external_lex_state = 13}, + [1841] = {.lex_state = 237, .external_lex_state = 16}, + [1842] = {.lex_state = 210, .external_lex_state = 13}, + [1843] = {.lex_state = 237, .external_lex_state = 16}, + [1844] = {.lex_state = 210, .external_lex_state = 13}, + [1845] = {.lex_state = 219, .external_lex_state = 2}, + [1846] = {.lex_state = 63, .external_lex_state = 2}, + [1847] = {.lex_state = 210, .external_lex_state = 13}, + [1848] = {.lex_state = 219, .external_lex_state = 2}, + [1849] = {.lex_state = 139, .external_lex_state = 19}, + [1850] = {.lex_state = 139, .external_lex_state = 19}, + [1851] = {.lex_state = 214, .external_lex_state = 22}, + [1852] = {.lex_state = 214, .external_lex_state = 22}, + [1853] = {.lex_state = 214, .external_lex_state = 16}, + [1854] = {.lex_state = 237, .external_lex_state = 16}, + [1855] = {.lex_state = 139, .external_lex_state = 19}, + [1856] = {.lex_state = 237, .external_lex_state = 16}, + [1857] = {.lex_state = 139, .external_lex_state = 19}, + [1858] = {.lex_state = 237, .external_lex_state = 16}, + [1859] = {.lex_state = 139, .external_lex_state = 19}, + [1860] = {.lex_state = 237, .external_lex_state = 16}, + [1861] = {.lex_state = 139, .external_lex_state = 19}, + [1862] = {.lex_state = 237, .external_lex_state = 16}, + [1863] = {.lex_state = 139, .external_lex_state = 19}, + [1864] = {.lex_state = 237, .external_lex_state = 16}, + [1865] = {.lex_state = 139, .external_lex_state = 19}, + [1866] = {.lex_state = 139, .external_lex_state = 19}, + [1867] = {.lex_state = 141, .external_lex_state = 4}, + [1868] = {.lex_state = 214, .external_lex_state = 20}, + [1869] = {.lex_state = 270}, + [1870] = {.lex_state = 270, .external_lex_state = 13}, + [1871] = {.lex_state = 270, .external_lex_state = 13}, + [1872] = {.lex_state = 270, .external_lex_state = 13}, + [1873] = {.lex_state = 164}, + [1874] = {.lex_state = 235, .external_lex_state = 16}, + [1875] = {.lex_state = 69}, + [1876] = {.lex_state = 172, .external_lex_state = 16}, + [1877] = {.lex_state = 172, .external_lex_state = 16}, + [1878] = {.lex_state = 172, .external_lex_state = 16}, + [1879] = {.lex_state = 270, .external_lex_state = 13}, + [1880] = {.lex_state = 239}, + [1881] = {.lex_state = 237, .external_lex_state = 16}, + [1882] = {.lex_state = 270, .external_lex_state = 13}, + [1883] = {.lex_state = 239}, + [1884] = {.lex_state = 237, .external_lex_state = 16}, + [1885] = {.lex_state = 270, .external_lex_state = 13}, + [1886] = {.lex_state = 239}, + [1887] = {.lex_state = 237, .external_lex_state = 16}, + [1888] = {.lex_state = 270, .external_lex_state = 13}, + [1889] = {.lex_state = 219, .external_lex_state = 2}, + [1890] = {.lex_state = 135, .external_lex_state = 4}, + [1891] = {.lex_state = 139, .external_lex_state = 8}, + [1892] = {.lex_state = 63, .external_lex_state = 2}, + [1893] = {.lex_state = 90, .external_lex_state = 4}, + [1894] = {.lex_state = 120, .external_lex_state = 8}, + [1895] = {.lex_state = 270, .external_lex_state = 13}, + [1896] = {.lex_state = 219, .external_lex_state = 2}, + [1897] = {.lex_state = 135, .external_lex_state = 4}, + [1898] = {.lex_state = 139, .external_lex_state = 8}, + [1899] = {.lex_state = 141, .external_lex_state = 4}, + [1900] = {.lex_state = 270}, + [1901] = {.lex_state = 270}, + [1902] = {.lex_state = 268}, + [1903] = {.lex_state = 254, .external_lex_state = 10}, + [1904] = {.lex_state = 254, .external_lex_state = 10}, + [1905] = {.lex_state = 214, .external_lex_state = 22}, + [1906] = {.lex_state = 214, .external_lex_state = 22}, + [1907] = {.lex_state = 214, .external_lex_state = 16}, + [1908] = {.lex_state = 237, .external_lex_state = 16}, + [1909] = {.lex_state = 254, .external_lex_state = 10}, + [1910] = {.lex_state = 237, .external_lex_state = 16}, + [1911] = {.lex_state = 254, .external_lex_state = 10}, + [1912] = {.lex_state = 237, .external_lex_state = 16}, + [1913] = {.lex_state = 254, .external_lex_state = 10}, + [1914] = {.lex_state = 237, .external_lex_state = 16}, + [1915] = {.lex_state = 254, .external_lex_state = 10}, + [1916] = {.lex_state = 237, .external_lex_state = 16}, + [1917] = {.lex_state = 254, .external_lex_state = 10}, + [1918] = {.lex_state = 237, .external_lex_state = 16}, + [1919] = {.lex_state = 254, .external_lex_state = 10}, + [1920] = {.lex_state = 254, .external_lex_state = 10}, + [1921] = {.lex_state = 270}, + [1922] = {.lex_state = 256, .external_lex_state = 10}, + [1923] = {.lex_state = 256, .external_lex_state = 10}, + [1924] = {.lex_state = 214, .external_lex_state = 22}, + [1925] = {.lex_state = 214, .external_lex_state = 22}, + [1926] = {.lex_state = 214, .external_lex_state = 16}, + [1927] = {.lex_state = 235, .external_lex_state = 16}, + [1928] = {.lex_state = 256, .external_lex_state = 10}, + [1929] = {.lex_state = 239}, + [1930] = {.lex_state = 237, .external_lex_state = 16}, + [1931] = {.lex_state = 256, .external_lex_state = 10}, + [1932] = {.lex_state = 239}, + [1933] = {.lex_state = 237, .external_lex_state = 16}, + [1934] = {.lex_state = 239}, + [1935] = {.lex_state = 237, .external_lex_state = 16}, + [1936] = {.lex_state = 237, .external_lex_state = 16}, + [1937] = {.lex_state = 256, .external_lex_state = 10}, + [1938] = {.lex_state = 237, .external_lex_state = 16}, + [1939] = {.lex_state = 256, .external_lex_state = 10}, + [1940] = {.lex_state = 237, .external_lex_state = 16}, + [1941] = {.lex_state = 256, .external_lex_state = 10}, + [1942] = {.lex_state = 219, .external_lex_state = 2}, + [1943] = {.lex_state = 63, .external_lex_state = 2}, + [1944] = {.lex_state = 256, .external_lex_state = 10}, + [1945] = {.lex_state = 219, .external_lex_state = 2}, + [1946] = {.lex_state = 63, .external_lex_state = 2}, + [1947] = {.lex_state = 141, .external_lex_state = 4}, + [1948] = {.lex_state = 272, .external_lex_state = 13}, + [1949] = {.lex_state = 272, .external_lex_state = 13}, + [1950] = {.lex_state = 272}, + [1951] = {.lex_state = 69}, + [1952] = {.lex_state = 63, .external_lex_state = 2}, + [1953] = {.lex_state = 258}, + [1954] = {.lex_state = 80}, + [1955] = {.lex_state = 82, .external_lex_state = 2}, + [1956] = {.lex_state = 84}, + [1957] = {.lex_state = 84}, + [1958] = {.lex_state = 281, .external_lex_state = 3}, + [1959] = {.lex_state = 281, .external_lex_state = 4}, + [1960] = {.lex_state = 287, .external_lex_state = 5}, + [1961] = {.lex_state = 97}, + [1962] = {.lex_state = 104}, + [1963] = {.lex_state = 287, .external_lex_state = 5}, + [1964] = {.lex_state = 113, .external_lex_state = 6}, + [1965] = {.lex_state = 63, .external_lex_state = 2}, + [1966] = {.lex_state = 63, .external_lex_state = 2}, + [1967] = {.lex_state = 63, .external_lex_state = 2}, + [1968] = {.lex_state = 289, .external_lex_state = 5}, + [1969] = {.lex_state = 275, .external_lex_state = 4}, + [1970] = {.lex_state = 287, .external_lex_state = 7}, + [1971] = {.lex_state = 291, .external_lex_state = 8}, + [1972] = {.lex_state = 69}, + [1973] = {.lex_state = 287, .external_lex_state = 7}, + [1974] = {.lex_state = 277, .external_lex_state = 2}, + [1975] = {.lex_state = 80, .external_lex_state = 2}, + [1976] = {.lex_state = 277, .external_lex_state = 2}, + [1977] = {.lex_state = 272}, + [1978] = {.lex_state = 272, .external_lex_state = 13}, + [1979] = {.lex_state = 258}, + [1980] = {.lex_state = 275, .external_lex_state = 4}, + [1981] = {.lex_state = 291, .external_lex_state = 8}, + [1982] = {.lex_state = 277, .external_lex_state = 2}, + [1983] = {.lex_state = 277, .external_lex_state = 2}, + [1984] = {.lex_state = 141, .external_lex_state = 4}, + [1985] = {.lex_state = 272, .external_lex_state = 13}, + [1986] = {.lex_state = 272, .external_lex_state = 13}, + [1987] = {.lex_state = 272}, + [1988] = {.lex_state = 275}, + [1989] = {.lex_state = 141, .external_lex_state = 4}, + [1990] = {.lex_state = 275}, + [1991] = {.lex_state = 129, .external_lex_state = 10}, + [1992] = {.lex_state = 129, .external_lex_state = 10}, + [1993] = {.lex_state = 129, .external_lex_state = 10}, + [1994] = {.lex_state = 237, .external_lex_state = 16}, + [1995] = {.lex_state = 129, .external_lex_state = 10}, + [1996] = {.lex_state = 237, .external_lex_state = 16}, + [1997] = {.lex_state = 129, .external_lex_state = 10}, + [1998] = {.lex_state = 237, .external_lex_state = 16}, + [1999] = {.lex_state = 129, .external_lex_state = 10}, + [2000] = {.lex_state = 129, .external_lex_state = 10}, + [2001] = {.lex_state = 129, .external_lex_state = 10}, + [2002] = {.lex_state = 141, .external_lex_state = 10}, + [2003] = {.lex_state = 279, .external_lex_state = 10}, + [2004] = {.lex_state = 279, .external_lex_state = 10}, + [2005] = {.lex_state = 279, .external_lex_state = 10}, + [2006] = {.lex_state = 221, .external_lex_state = 23}, + [2007] = {.lex_state = 221, .external_lex_state = 23}, + [2008] = {.lex_state = 221, .external_lex_state = 23}, + [2009] = {.lex_state = 147, .external_lex_state = 11}, + [2010] = {.lex_state = 147, .external_lex_state = 11}, + [2011] = {.lex_state = 147, .external_lex_state = 11}, + [2012] = {.lex_state = 237, .external_lex_state = 16}, + [2013] = {.lex_state = 147, .external_lex_state = 11}, + [2014] = {.lex_state = 237, .external_lex_state = 16}, + [2015] = {.lex_state = 147, .external_lex_state = 11}, + [2016] = {.lex_state = 237, .external_lex_state = 16}, + [2017] = {.lex_state = 147, .external_lex_state = 11}, + [2018] = {.lex_state = 147, .external_lex_state = 11}, + [2019] = {.lex_state = 147, .external_lex_state = 11}, + [2020] = {.lex_state = 248, .external_lex_state = 23}, + [2021] = {.lex_state = 204, .external_lex_state = 23}, + [2022] = {.lex_state = 248, .external_lex_state = 23}, + [2023] = {.lex_state = 164}, + [2024] = {.lex_state = 235, .external_lex_state = 16}, + [2025] = {.lex_state = 69}, + [2026] = {.lex_state = 172, .external_lex_state = 16}, + [2027] = {.lex_state = 172, .external_lex_state = 16}, + [2028] = {.lex_state = 172, .external_lex_state = 16}, + [2029] = {.lex_state = 248, .external_lex_state = 23}, + [2030] = {.lex_state = 239}, + [2031] = {.lex_state = 237, .external_lex_state = 16}, + [2032] = {.lex_state = 248, .external_lex_state = 23}, + [2033] = {.lex_state = 239}, + [2034] = {.lex_state = 237, .external_lex_state = 16}, + [2035] = {.lex_state = 248, .external_lex_state = 23}, + [2036] = {.lex_state = 239}, + [2037] = {.lex_state = 237, .external_lex_state = 16}, + [2038] = {.lex_state = 248, .external_lex_state = 23}, + [2039] = {.lex_state = 219, .external_lex_state = 2}, + [2040] = {.lex_state = 135, .external_lex_state = 4}, + [2041] = {.lex_state = 139, .external_lex_state = 8}, + [2042] = {.lex_state = 63, .external_lex_state = 2}, + [2043] = {.lex_state = 90, .external_lex_state = 4}, + [2044] = {.lex_state = 120, .external_lex_state = 8}, + [2045] = {.lex_state = 248, .external_lex_state = 23}, + [2046] = {.lex_state = 219, .external_lex_state = 2}, + [2047] = {.lex_state = 135, .external_lex_state = 4}, + [2048] = {.lex_state = 139, .external_lex_state = 8}, + [2049] = {.lex_state = 232, .external_lex_state = 13}, + [2050] = {.lex_state = 232, .external_lex_state = 13}, + [2051] = {.lex_state = 232, .external_lex_state = 13}, + [2052] = {.lex_state = 237, .external_lex_state = 16}, + [2053] = {.lex_state = 232, .external_lex_state = 13}, + [2054] = {.lex_state = 237, .external_lex_state = 16}, + [2055] = {.lex_state = 232, .external_lex_state = 13}, + [2056] = {.lex_state = 237, .external_lex_state = 16}, + [2057] = {.lex_state = 232, .external_lex_state = 13}, + [2058] = {.lex_state = 232, .external_lex_state = 13}, + [2059] = {.lex_state = 232, .external_lex_state = 13}, + [2060] = {.lex_state = 135, .external_lex_state = 14}, + [2061] = {.lex_state = 135, .external_lex_state = 14}, + [2062] = {.lex_state = 135, .external_lex_state = 14}, + [2063] = {.lex_state = 237, .external_lex_state = 16}, + [2064] = {.lex_state = 135, .external_lex_state = 14}, + [2065] = {.lex_state = 237, .external_lex_state = 16}, + [2066] = {.lex_state = 135, .external_lex_state = 14}, + [2067] = {.lex_state = 237, .external_lex_state = 16}, + [2068] = {.lex_state = 135, .external_lex_state = 14}, + [2069] = {.lex_state = 135, .external_lex_state = 14}, + [2070] = {.lex_state = 135, .external_lex_state = 14}, + [2071] = {.lex_state = 135, .external_lex_state = 10}, + [2072] = {.lex_state = 135, .external_lex_state = 10}, + [2073] = {.lex_state = 135, .external_lex_state = 10}, + [2074] = {.lex_state = 237, .external_lex_state = 16}, + [2075] = {.lex_state = 135, .external_lex_state = 10}, + [2076] = {.lex_state = 237, .external_lex_state = 16}, + [2077] = {.lex_state = 135, .external_lex_state = 10}, + [2078] = {.lex_state = 237, .external_lex_state = 16}, + [2079] = {.lex_state = 135, .external_lex_state = 10}, + [2080] = {.lex_state = 135, .external_lex_state = 10}, + [2081] = {.lex_state = 135, .external_lex_state = 10}, + [2082] = {.lex_state = 80, .external_lex_state = 15}, + [2083] = {.lex_state = 80, .external_lex_state = 15}, + [2084] = {.lex_state = 80, .external_lex_state = 15}, + [2085] = {.lex_state = 237, .external_lex_state = 16}, + [2086] = {.lex_state = 80, .external_lex_state = 15}, + [2087] = {.lex_state = 237, .external_lex_state = 16}, + [2088] = {.lex_state = 80, .external_lex_state = 15}, + [2089] = {.lex_state = 237, .external_lex_state = 16}, + [2090] = {.lex_state = 80, .external_lex_state = 15}, + [2091] = {.lex_state = 80, .external_lex_state = 15}, + [2092] = {.lex_state = 80, .external_lex_state = 15}, + [2093] = {.lex_state = 97, .external_lex_state = 13}, + [2094] = {.lex_state = 97, .external_lex_state = 13}, + [2095] = {.lex_state = 97, .external_lex_state = 13}, + [2096] = {.lex_state = 237, .external_lex_state = 16}, + [2097] = {.lex_state = 97, .external_lex_state = 13}, + [2098] = {.lex_state = 237, .external_lex_state = 16}, + [2099] = {.lex_state = 97, .external_lex_state = 13}, + [2100] = {.lex_state = 237, .external_lex_state = 16}, + [2101] = {.lex_state = 97, .external_lex_state = 13}, + [2102] = {.lex_state = 97, .external_lex_state = 13}, + [2103] = {.lex_state = 97, .external_lex_state = 13}, + [2104] = {.lex_state = 172, .external_lex_state = 16}, + [2105] = {.lex_state = 172, .external_lex_state = 16}, + [2106] = {.lex_state = 214, .external_lex_state = 22}, + [2107] = {.lex_state = 214, .external_lex_state = 22}, + [2108] = {.lex_state = 214, .external_lex_state = 22}, + [2109] = {.lex_state = 214, .external_lex_state = 22}, + [2110] = {.lex_state = 214, .external_lex_state = 16}, + [2111] = {.lex_state = 235, .external_lex_state = 16}, + [2112] = {.lex_state = 214, .external_lex_state = 22}, + [2113] = {.lex_state = 239}, + [2114] = {.lex_state = 237, .external_lex_state = 16}, + [2115] = {.lex_state = 214, .external_lex_state = 22}, + [2116] = {.lex_state = 239}, + [2117] = {.lex_state = 237, .external_lex_state = 16}, + [2118] = {.lex_state = 239}, + [2119] = {.lex_state = 237, .external_lex_state = 16}, + [2120] = {.lex_state = 237, .external_lex_state = 16}, + [2121] = {.lex_state = 214, .external_lex_state = 22}, + [2122] = {.lex_state = 237, .external_lex_state = 16}, + [2123] = {.lex_state = 214, .external_lex_state = 22}, + [2124] = {.lex_state = 237, .external_lex_state = 16}, + [2125] = {.lex_state = 214, .external_lex_state = 22}, + [2126] = {.lex_state = 219, .external_lex_state = 2}, + [2127] = {.lex_state = 63, .external_lex_state = 2}, + [2128] = {.lex_state = 214, .external_lex_state = 22}, + [2129] = {.lex_state = 219, .external_lex_state = 2}, + [2130] = {.lex_state = 122, .external_lex_state = 5}, + [2131] = {.lex_state = 122, .external_lex_state = 5}, + [2132] = {.lex_state = 122, .external_lex_state = 5}, + [2133] = {.lex_state = 237, .external_lex_state = 22}, + [2134] = {.lex_state = 237, .external_lex_state = 22}, + [2135] = {.lex_state = 214, .external_lex_state = 22}, + [2136] = {.lex_state = 214, .external_lex_state = 22}, + [2137] = {.lex_state = 214, .external_lex_state = 16}, + [2138] = {.lex_state = 237, .external_lex_state = 16}, + [2139] = {.lex_state = 237, .external_lex_state = 22}, + [2140] = {.lex_state = 237, .external_lex_state = 16}, + [2141] = {.lex_state = 237, .external_lex_state = 22}, + [2142] = {.lex_state = 237, .external_lex_state = 16}, + [2143] = {.lex_state = 237, .external_lex_state = 22}, + [2144] = {.lex_state = 237, .external_lex_state = 16}, + [2145] = {.lex_state = 237, .external_lex_state = 22}, + [2146] = {.lex_state = 237, .external_lex_state = 16}, + [2147] = {.lex_state = 237, .external_lex_state = 22}, + [2148] = {.lex_state = 237, .external_lex_state = 16}, + [2149] = {.lex_state = 237, .external_lex_state = 22}, + [2150] = {.lex_state = 237, .external_lex_state = 22}, + [2151] = {.lex_state = 141, .external_lex_state = 10}, + [2152] = {.lex_state = 141, .external_lex_state = 10}, + [2153] = {.lex_state = 141, .external_lex_state = 10}, + [2154] = {.lex_state = 246, .external_lex_state = 23}, + [2155] = {.lex_state = 246, .external_lex_state = 23}, + [2156] = {.lex_state = 246, .external_lex_state = 23}, + [2157] = {.lex_state = 178, .external_lex_state = 17}, + [2158] = {.lex_state = 178, .external_lex_state = 17}, + [2159] = {.lex_state = 214, .external_lex_state = 22}, + [2160] = {.lex_state = 214, .external_lex_state = 22}, + [2161] = {.lex_state = 214, .external_lex_state = 16}, + [2162] = {.lex_state = 237, .external_lex_state = 16}, + [2163] = {.lex_state = 178, .external_lex_state = 17}, + [2164] = {.lex_state = 237, .external_lex_state = 16}, + [2165] = {.lex_state = 178, .external_lex_state = 17}, + [2166] = {.lex_state = 237, .external_lex_state = 16}, + [2167] = {.lex_state = 178, .external_lex_state = 17}, + [2168] = {.lex_state = 237, .external_lex_state = 16}, + [2169] = {.lex_state = 178, .external_lex_state = 17}, + [2170] = {.lex_state = 237, .external_lex_state = 16}, + [2171] = {.lex_state = 178, .external_lex_state = 17}, + [2172] = {.lex_state = 237, .external_lex_state = 16}, + [2173] = {.lex_state = 210, .external_lex_state = 13}, + [2174] = {.lex_state = 210, .external_lex_state = 13}, + [2175] = {.lex_state = 214, .external_lex_state = 22}, + [2176] = {.lex_state = 214, .external_lex_state = 22}, + [2177] = {.lex_state = 214, .external_lex_state = 16}, + [2178] = {.lex_state = 237, .external_lex_state = 16}, + [2179] = {.lex_state = 210, .external_lex_state = 13}, + [2180] = {.lex_state = 237, .external_lex_state = 16}, + [2181] = {.lex_state = 210, .external_lex_state = 13}, + [2182] = {.lex_state = 237, .external_lex_state = 16}, + [2183] = {.lex_state = 210, .external_lex_state = 13}, + [2184] = {.lex_state = 237, .external_lex_state = 16}, + [2185] = {.lex_state = 210, .external_lex_state = 13}, + [2186] = {.lex_state = 237, .external_lex_state = 16}, + [2187] = {.lex_state = 210, .external_lex_state = 13}, + [2188] = {.lex_state = 237, .external_lex_state = 16}, + [2189] = {.lex_state = 210, .external_lex_state = 13}, + [2190] = {.lex_state = 210, .external_lex_state = 13}, + [2191] = {.lex_state = 139, .external_lex_state = 19}, + [2192] = {.lex_state = 139, .external_lex_state = 19}, + [2193] = {.lex_state = 139, .external_lex_state = 19}, + [2194] = {.lex_state = 237, .external_lex_state = 16}, + [2195] = {.lex_state = 139, .external_lex_state = 19}, + [2196] = {.lex_state = 237, .external_lex_state = 16}, + [2197] = {.lex_state = 139, .external_lex_state = 19}, + [2198] = {.lex_state = 237, .external_lex_state = 16}, + [2199] = {.lex_state = 139, .external_lex_state = 19}, + [2200] = {.lex_state = 139, .external_lex_state = 19}, + [2201] = {.lex_state = 139, .external_lex_state = 19}, + [2202] = {.lex_state = 141, .external_lex_state = 4}, + [2203] = {.lex_state = 270, .external_lex_state = 13}, + [2204] = {.lex_state = 270, .external_lex_state = 13}, + [2205] = {.lex_state = 214, .external_lex_state = 22}, + [2206] = {.lex_state = 214, .external_lex_state = 22}, + [2207] = {.lex_state = 214, .external_lex_state = 16}, + [2208] = {.lex_state = 235, .external_lex_state = 16}, + [2209] = {.lex_state = 270, .external_lex_state = 13}, + [2210] = {.lex_state = 239}, + [2211] = {.lex_state = 237, .external_lex_state = 16}, + [2212] = {.lex_state = 270, .external_lex_state = 13}, + [2213] = {.lex_state = 239}, + [2214] = {.lex_state = 237, .external_lex_state = 16}, + [2215] = {.lex_state = 239}, + [2216] = {.lex_state = 237, .external_lex_state = 16}, + [2217] = {.lex_state = 237, .external_lex_state = 16}, + [2218] = {.lex_state = 270, .external_lex_state = 13}, + [2219] = {.lex_state = 237, .external_lex_state = 16}, + [2220] = {.lex_state = 270, .external_lex_state = 13}, + [2221] = {.lex_state = 237, .external_lex_state = 16}, + [2222] = {.lex_state = 270, .external_lex_state = 13}, + [2223] = {.lex_state = 219, .external_lex_state = 2}, + [2224] = {.lex_state = 63, .external_lex_state = 2}, + [2225] = {.lex_state = 270, .external_lex_state = 13}, + [2226] = {.lex_state = 219, .external_lex_state = 2}, + [2227] = {.lex_state = 141, .external_lex_state = 4}, + [2228] = {.lex_state = 254, .external_lex_state = 10}, + [2229] = {.lex_state = 254, .external_lex_state = 10}, + [2230] = {.lex_state = 254, .external_lex_state = 10}, + [2231] = {.lex_state = 237, .external_lex_state = 16}, + [2232] = {.lex_state = 254, .external_lex_state = 10}, + [2233] = {.lex_state = 237, .external_lex_state = 16}, + [2234] = {.lex_state = 254, .external_lex_state = 10}, + [2235] = {.lex_state = 237, .external_lex_state = 16}, + [2236] = {.lex_state = 254, .external_lex_state = 10}, + [2237] = {.lex_state = 254, .external_lex_state = 10}, + [2238] = {.lex_state = 254, .external_lex_state = 10}, + [2239] = {.lex_state = 268}, + [2240] = {.lex_state = 256, .external_lex_state = 10}, + [2241] = {.lex_state = 256, .external_lex_state = 10}, + [2242] = {.lex_state = 214, .external_lex_state = 22}, + [2243] = {.lex_state = 214, .external_lex_state = 22}, + [2244] = {.lex_state = 214, .external_lex_state = 16}, + [2245] = {.lex_state = 237, .external_lex_state = 16}, + [2246] = {.lex_state = 256, .external_lex_state = 10}, + [2247] = {.lex_state = 237, .external_lex_state = 16}, + [2248] = {.lex_state = 256, .external_lex_state = 10}, + [2249] = {.lex_state = 237, .external_lex_state = 16}, + [2250] = {.lex_state = 256, .external_lex_state = 10}, + [2251] = {.lex_state = 237, .external_lex_state = 16}, + [2252] = {.lex_state = 256, .external_lex_state = 10}, + [2253] = {.lex_state = 237, .external_lex_state = 16}, + [2254] = {.lex_state = 256, .external_lex_state = 10}, + [2255] = {.lex_state = 237, .external_lex_state = 16}, + [2256] = {.lex_state = 256, .external_lex_state = 10}, + [2257] = {.lex_state = 256, .external_lex_state = 10}, + [2258] = {.lex_state = 124, .external_lex_state = 9}, + [2259] = {.lex_state = 80}, + [2260] = {.lex_state = 133}, + [2261] = {.lex_state = 147, .external_lex_state = 12}, + [2262] = {.lex_state = 160}, + [2263] = {.lex_state = 69}, + [2264] = {.lex_state = 281, .external_lex_state = 14}, + [2265] = {.lex_state = 97}, + [2266] = {.lex_state = 104}, + [2267] = {.lex_state = 281, .external_lex_state = 14}, + [2268] = {.lex_state = 113, .external_lex_state = 6}, + [2269] = {.lex_state = 63, .external_lex_state = 2}, + [2270] = {.lex_state = 63, .external_lex_state = 2}, + [2271] = {.lex_state = 63, .external_lex_state = 2}, + [2272] = {.lex_state = 281, .external_lex_state = 3}, + [2273] = {.lex_state = 69}, + [2274] = {.lex_state = 281, .external_lex_state = 3}, + [2275] = {.lex_state = 281, .external_lex_state = 10}, + [2276] = {.lex_state = 97}, + [2277] = {.lex_state = 104}, + [2278] = {.lex_state = 281, .external_lex_state = 10}, + [2279] = {.lex_state = 113, .external_lex_state = 6}, + [2280] = {.lex_state = 63, .external_lex_state = 2}, + [2281] = {.lex_state = 63, .external_lex_state = 2}, + [2282] = {.lex_state = 63, .external_lex_state = 2}, + [2283] = {.lex_state = 281, .external_lex_state = 4}, + [2284] = {.lex_state = 281, .external_lex_state = 4}, + [2285] = {.lex_state = 80}, + [2286] = {.lex_state = 287, .external_lex_state = 5}, + [2287] = {.lex_state = 287, .external_lex_state = 5}, + [2288] = {.lex_state = 164}, + [2289] = {.lex_state = 97}, + [2290] = {.lex_state = 287, .external_lex_state = 5}, + [2291] = {.lex_state = 287, .external_lex_state = 5}, + [2292] = {.lex_state = 287, .external_lex_state = 5}, + [2293] = {.lex_state = 69}, + [2294] = {.lex_state = 170, .external_lex_state = 6}, + [2295] = {.lex_state = 172, .external_lex_state = 16}, + [2296] = {.lex_state = 172, .external_lex_state = 16}, + [2297] = {.lex_state = 172, .external_lex_state = 16}, + [2298] = {.lex_state = 135, .external_lex_state = 4}, + [2299] = {.lex_state = 139, .external_lex_state = 8}, + [2300] = {.lex_state = 63, .external_lex_state = 2}, + [2301] = {.lex_state = 90, .external_lex_state = 4}, + [2302] = {.lex_state = 120, .external_lex_state = 8}, + [2303] = {.lex_state = 63, .external_lex_state = 2}, + [2304] = {.lex_state = 135, .external_lex_state = 4}, + [2305] = {.lex_state = 139, .external_lex_state = 8}, + [2306] = {.lex_state = 63, .external_lex_state = 2}, + [2307] = {.lex_state = 84}, + [2308] = {.lex_state = 63, .external_lex_state = 2}, + [2309] = {.lex_state = 277, .external_lex_state = 2}, + [2310] = {.lex_state = 63, .external_lex_state = 2}, + [2311] = {.lex_state = 277, .external_lex_state = 2}, + [2312] = {.lex_state = 63}, + [2313] = {.lex_state = 181}, + [2314] = {.lex_state = 80}, + [2315] = {.lex_state = 80}, + [2316] = {.lex_state = 287, .external_lex_state = 5}, + [2317] = {.lex_state = 287, .external_lex_state = 5}, + [2318] = {.lex_state = 293, .external_lex_state = 7}, + [2319] = {.lex_state = 287, .external_lex_state = 7}, + [2320] = {.lex_state = 258}, + [2321] = {.lex_state = 275, .external_lex_state = 4}, + [2322] = {.lex_state = 291, .external_lex_state = 8}, + [2323] = {.lex_state = 277, .external_lex_state = 2}, + [2324] = {.lex_state = 287, .external_lex_state = 7}, + [2325] = {.lex_state = 277, .external_lex_state = 2}, + [2326] = {.lex_state = 277, .external_lex_state = 2}, + [2327] = {.lex_state = 258}, + [2328] = {.lex_state = 275, .external_lex_state = 4}, + [2329] = {.lex_state = 291, .external_lex_state = 8}, + [2330] = {.lex_state = 277, .external_lex_state = 2}, + [2331] = {.lex_state = 175, .external_lex_state = 2}, + [2332] = {.lex_state = 272}, + [2333] = {.lex_state = 175, .external_lex_state = 2}, + [2334] = {.lex_state = 272}, + [2335] = {.lex_state = 141, .external_lex_state = 4}, + [2336] = {.lex_state = 141, .external_lex_state = 4}, + [2337] = {.lex_state = 129, .external_lex_state = 10}, + [2338] = {.lex_state = 129, .external_lex_state = 10}, + [2339] = {.lex_state = 129, .external_lex_state = 10}, + [2340] = {.lex_state = 279, .external_lex_state = 10}, + [2341] = {.lex_state = 221, .external_lex_state = 23}, + [2342] = {.lex_state = 147, .external_lex_state = 11}, + [2343] = {.lex_state = 147, .external_lex_state = 11}, + [2344] = {.lex_state = 147, .external_lex_state = 11}, + [2345] = {.lex_state = 248, .external_lex_state = 23}, + [2346] = {.lex_state = 248, .external_lex_state = 23}, + [2347] = {.lex_state = 214, .external_lex_state = 22}, + [2348] = {.lex_state = 214, .external_lex_state = 22}, + [2349] = {.lex_state = 214, .external_lex_state = 16}, + [2350] = {.lex_state = 235, .external_lex_state = 16}, + [2351] = {.lex_state = 248, .external_lex_state = 23}, + [2352] = {.lex_state = 239}, + [2353] = {.lex_state = 237, .external_lex_state = 16}, + [2354] = {.lex_state = 248, .external_lex_state = 23}, + [2355] = {.lex_state = 239}, + [2356] = {.lex_state = 237, .external_lex_state = 16}, + [2357] = {.lex_state = 239}, + [2358] = {.lex_state = 237, .external_lex_state = 16}, + [2359] = {.lex_state = 237, .external_lex_state = 16}, + [2360] = {.lex_state = 248, .external_lex_state = 23}, + [2361] = {.lex_state = 237, .external_lex_state = 16}, + [2362] = {.lex_state = 248, .external_lex_state = 23}, + [2363] = {.lex_state = 237, .external_lex_state = 16}, + [2364] = {.lex_state = 248, .external_lex_state = 23}, + [2365] = {.lex_state = 219, .external_lex_state = 2}, + [2366] = {.lex_state = 63, .external_lex_state = 2}, + [2367] = {.lex_state = 248, .external_lex_state = 23}, + [2368] = {.lex_state = 219, .external_lex_state = 2}, + [2369] = {.lex_state = 232, .external_lex_state = 13}, + [2370] = {.lex_state = 232, .external_lex_state = 13}, + [2371] = {.lex_state = 232, .external_lex_state = 13}, + [2372] = {.lex_state = 135, .external_lex_state = 14}, + [2373] = {.lex_state = 135, .external_lex_state = 14}, + [2374] = {.lex_state = 135, .external_lex_state = 14}, + [2375] = {.lex_state = 135, .external_lex_state = 10}, + [2376] = {.lex_state = 135, .external_lex_state = 10}, + [2377] = {.lex_state = 135, .external_lex_state = 10}, + [2378] = {.lex_state = 80, .external_lex_state = 15}, + [2379] = {.lex_state = 80, .external_lex_state = 15}, + [2380] = {.lex_state = 80, .external_lex_state = 15}, + [2381] = {.lex_state = 97, .external_lex_state = 13}, + [2382] = {.lex_state = 97, .external_lex_state = 13}, + [2383] = {.lex_state = 97, .external_lex_state = 13}, + [2384] = {.lex_state = 214, .external_lex_state = 22}, + [2385] = {.lex_state = 214, .external_lex_state = 22}, + [2386] = {.lex_state = 214, .external_lex_state = 22}, + [2387] = {.lex_state = 214, .external_lex_state = 22}, + [2388] = {.lex_state = 214, .external_lex_state = 16}, + [2389] = {.lex_state = 237, .external_lex_state = 16}, + [2390] = {.lex_state = 214, .external_lex_state = 22}, + [2391] = {.lex_state = 237, .external_lex_state = 16}, + [2392] = {.lex_state = 214, .external_lex_state = 22}, + [2393] = {.lex_state = 237, .external_lex_state = 16}, + [2394] = {.lex_state = 214, .external_lex_state = 22}, + [2395] = {.lex_state = 237, .external_lex_state = 16}, + [2396] = {.lex_state = 214, .external_lex_state = 22}, + [2397] = {.lex_state = 237, .external_lex_state = 16}, + [2398] = {.lex_state = 214, .external_lex_state = 22}, + [2399] = {.lex_state = 237, .external_lex_state = 16}, + [2400] = {.lex_state = 214, .external_lex_state = 22}, + [2401] = {.lex_state = 214, .external_lex_state = 22}, + [2402] = {.lex_state = 237, .external_lex_state = 22}, + [2403] = {.lex_state = 237, .external_lex_state = 22}, + [2404] = {.lex_state = 237, .external_lex_state = 22}, + [2405] = {.lex_state = 237, .external_lex_state = 16}, + [2406] = {.lex_state = 237, .external_lex_state = 22}, + [2407] = {.lex_state = 237, .external_lex_state = 16}, + [2408] = {.lex_state = 237, .external_lex_state = 22}, + [2409] = {.lex_state = 237, .external_lex_state = 16}, + [2410] = {.lex_state = 237, .external_lex_state = 22}, + [2411] = {.lex_state = 237, .external_lex_state = 22}, + [2412] = {.lex_state = 237, .external_lex_state = 22}, + [2413] = {.lex_state = 141, .external_lex_state = 10}, + [2414] = {.lex_state = 246, .external_lex_state = 23}, + [2415] = {.lex_state = 178, .external_lex_state = 17}, + [2416] = {.lex_state = 178, .external_lex_state = 17}, + [2417] = {.lex_state = 178, .external_lex_state = 17}, + [2418] = {.lex_state = 237, .external_lex_state = 16}, + [2419] = {.lex_state = 178, .external_lex_state = 17}, + [2420] = {.lex_state = 237, .external_lex_state = 16}, + [2421] = {.lex_state = 178, .external_lex_state = 17}, + [2422] = {.lex_state = 237, .external_lex_state = 16}, + [2423] = {.lex_state = 178, .external_lex_state = 17}, + [2424] = {.lex_state = 178, .external_lex_state = 17}, + [2425] = {.lex_state = 178, .external_lex_state = 17}, + [2426] = {.lex_state = 210, .external_lex_state = 13}, + [2427] = {.lex_state = 210, .external_lex_state = 13}, + [2428] = {.lex_state = 210, .external_lex_state = 13}, + [2429] = {.lex_state = 237, .external_lex_state = 16}, + [2430] = {.lex_state = 210, .external_lex_state = 13}, + [2431] = {.lex_state = 237, .external_lex_state = 16}, + [2432] = {.lex_state = 210, .external_lex_state = 13}, + [2433] = {.lex_state = 237, .external_lex_state = 16}, + [2434] = {.lex_state = 210, .external_lex_state = 13}, + [2435] = {.lex_state = 210, .external_lex_state = 13}, + [2436] = {.lex_state = 210, .external_lex_state = 13}, + [2437] = {.lex_state = 139, .external_lex_state = 19}, + [2438] = {.lex_state = 139, .external_lex_state = 19}, + [2439] = {.lex_state = 139, .external_lex_state = 19}, + [2440] = {.lex_state = 270, .external_lex_state = 13}, + [2441] = {.lex_state = 270, .external_lex_state = 13}, + [2442] = {.lex_state = 214, .external_lex_state = 22}, + [2443] = {.lex_state = 214, .external_lex_state = 22}, + [2444] = {.lex_state = 214, .external_lex_state = 16}, + [2445] = {.lex_state = 237, .external_lex_state = 16}, + [2446] = {.lex_state = 270, .external_lex_state = 13}, + [2447] = {.lex_state = 237, .external_lex_state = 16}, + [2448] = {.lex_state = 270, .external_lex_state = 13}, + [2449] = {.lex_state = 237, .external_lex_state = 16}, + [2450] = {.lex_state = 270, .external_lex_state = 13}, + [2451] = {.lex_state = 237, .external_lex_state = 16}, + [2452] = {.lex_state = 270, .external_lex_state = 13}, + [2453] = {.lex_state = 237, .external_lex_state = 16}, + [2454] = {.lex_state = 270, .external_lex_state = 13}, + [2455] = {.lex_state = 237, .external_lex_state = 16}, + [2456] = {.lex_state = 270, .external_lex_state = 13}, + [2457] = {.lex_state = 270, .external_lex_state = 13}, + [2458] = {.lex_state = 254, .external_lex_state = 10}, + [2459] = {.lex_state = 254, .external_lex_state = 10}, + [2460] = {.lex_state = 254, .external_lex_state = 10}, + [2461] = {.lex_state = 141, .external_lex_state = 4}, + [2462] = {.lex_state = 256, .external_lex_state = 10}, + [2463] = {.lex_state = 256, .external_lex_state = 10}, + [2464] = {.lex_state = 256, .external_lex_state = 10}, + [2465] = {.lex_state = 237, .external_lex_state = 16}, + [2466] = {.lex_state = 256, .external_lex_state = 10}, + [2467] = {.lex_state = 237, .external_lex_state = 16}, + [2468] = {.lex_state = 256, .external_lex_state = 10}, + [2469] = {.lex_state = 237, .external_lex_state = 16}, + [2470] = {.lex_state = 256, .external_lex_state = 10}, + [2471] = {.lex_state = 256, .external_lex_state = 10}, + [2472] = {.lex_state = 256, .external_lex_state = 10}, + [2473] = {.lex_state = 291, .external_lex_state = 8}, + [2474] = {.lex_state = 210}, + [2475] = {.lex_state = 291, .external_lex_state = 19}, + [2476] = {.lex_state = 97}, + [2477] = {.lex_state = 104}, + [2478] = {.lex_state = 291, .external_lex_state = 19}, + [2479] = {.lex_state = 113, .external_lex_state = 6}, + [2480] = {.lex_state = 63, .external_lex_state = 2}, + [2481] = {.lex_state = 63, .external_lex_state = 2}, + [2482] = {.lex_state = 63, .external_lex_state = 2}, + [2483] = {.lex_state = 293, .external_lex_state = 7}, + [2484] = {.lex_state = 84}, + [2485] = {.lex_state = 295, .external_lex_state = 21}, + [2486] = {.lex_state = 293, .external_lex_state = 21}, + [2487] = {.lex_state = 124, .external_lex_state = 9}, + [2488] = {.lex_state = 80}, + [2489] = {.lex_state = 281, .external_lex_state = 14}, + [2490] = {.lex_state = 281, .external_lex_state = 14}, + [2491] = {.lex_state = 164}, + [2492] = {.lex_state = 97}, + [2493] = {.lex_state = 281, .external_lex_state = 14}, + [2494] = {.lex_state = 281, .external_lex_state = 14}, + [2495] = {.lex_state = 281, .external_lex_state = 14}, + [2496] = {.lex_state = 69}, + [2497] = {.lex_state = 170, .external_lex_state = 6}, + [2498] = {.lex_state = 172, .external_lex_state = 16}, + [2499] = {.lex_state = 172, .external_lex_state = 16}, + [2500] = {.lex_state = 172, .external_lex_state = 16}, + [2501] = {.lex_state = 135, .external_lex_state = 4}, + [2502] = {.lex_state = 139, .external_lex_state = 8}, + [2503] = {.lex_state = 63, .external_lex_state = 2}, + [2504] = {.lex_state = 90, .external_lex_state = 4}, + [2505] = {.lex_state = 120, .external_lex_state = 8}, + [2506] = {.lex_state = 63, .external_lex_state = 2}, + [2507] = {.lex_state = 135, .external_lex_state = 4}, + [2508] = {.lex_state = 139, .external_lex_state = 8}, + [2509] = {.lex_state = 63, .external_lex_state = 2}, + [2510] = {.lex_state = 281, .external_lex_state = 3}, + [2511] = {.lex_state = 80}, + [2512] = {.lex_state = 281, .external_lex_state = 10}, + [2513] = {.lex_state = 281, .external_lex_state = 10}, + [2514] = {.lex_state = 164}, + [2515] = {.lex_state = 97}, + [2516] = {.lex_state = 281, .external_lex_state = 10}, + [2517] = {.lex_state = 281, .external_lex_state = 10}, + [2518] = {.lex_state = 281, .external_lex_state = 10}, + [2519] = {.lex_state = 69}, + [2520] = {.lex_state = 170, .external_lex_state = 6}, + [2521] = {.lex_state = 172, .external_lex_state = 16}, + [2522] = {.lex_state = 172, .external_lex_state = 16}, + [2523] = {.lex_state = 172, .external_lex_state = 16}, + [2524] = {.lex_state = 135, .external_lex_state = 4}, + [2525] = {.lex_state = 139, .external_lex_state = 8}, + [2526] = {.lex_state = 63, .external_lex_state = 2}, + [2527] = {.lex_state = 90, .external_lex_state = 4}, + [2528] = {.lex_state = 120, .external_lex_state = 8}, + [2529] = {.lex_state = 63, .external_lex_state = 2}, + [2530] = {.lex_state = 135, .external_lex_state = 4}, + [2531] = {.lex_state = 139, .external_lex_state = 8}, + [2532] = {.lex_state = 63, .external_lex_state = 2}, + [2533] = {.lex_state = 281, .external_lex_state = 4}, + [2534] = {.lex_state = 287, .external_lex_state = 5}, + [2535] = {.lex_state = 287, .external_lex_state = 5}, + [2536] = {.lex_state = 287, .external_lex_state = 5}, + [2537] = {.lex_state = 164}, + [2538] = {.lex_state = 235, .external_lex_state = 16}, + [2539] = {.lex_state = 69}, + [2540] = {.lex_state = 172, .external_lex_state = 16}, + [2541] = {.lex_state = 172, .external_lex_state = 16}, + [2542] = {.lex_state = 172, .external_lex_state = 16}, + [2543] = {.lex_state = 287, .external_lex_state = 5}, + [2544] = {.lex_state = 239}, + [2545] = {.lex_state = 237, .external_lex_state = 16}, + [2546] = {.lex_state = 287, .external_lex_state = 5}, + [2547] = {.lex_state = 239}, + [2548] = {.lex_state = 237, .external_lex_state = 16}, + [2549] = {.lex_state = 287, .external_lex_state = 5}, + [2550] = {.lex_state = 239}, + [2551] = {.lex_state = 237, .external_lex_state = 16}, + [2552] = {.lex_state = 287, .external_lex_state = 5}, + [2553] = {.lex_state = 219, .external_lex_state = 2}, + [2554] = {.lex_state = 135, .external_lex_state = 4}, + [2555] = {.lex_state = 139, .external_lex_state = 8}, + [2556] = {.lex_state = 63, .external_lex_state = 2}, + [2557] = {.lex_state = 90, .external_lex_state = 4}, + [2558] = {.lex_state = 120, .external_lex_state = 8}, + [2559] = {.lex_state = 287, .external_lex_state = 5}, + [2560] = {.lex_state = 219, .external_lex_state = 2}, + [2561] = {.lex_state = 135, .external_lex_state = 4}, + [2562] = {.lex_state = 139, .external_lex_state = 8}, + [2563] = {.lex_state = 133}, + [2564] = {.lex_state = 291, .external_lex_state = 8}, + [2565] = {.lex_state = 275, .external_lex_state = 4}, + [2566] = {.lex_state = 291, .external_lex_state = 8}, + [2567] = {.lex_state = 80}, + [2568] = {.lex_state = 287, .external_lex_state = 5}, + [2569] = {.lex_state = 287, .external_lex_state = 5}, + [2570] = {.lex_state = 287, .external_lex_state = 7}, + [2571] = {.lex_state = 293, .external_lex_state = 5}, + [2572] = {.lex_state = 97}, + [2573] = {.lex_state = 104}, + [2574] = {.lex_state = 293, .external_lex_state = 5}, + [2575] = {.lex_state = 113, .external_lex_state = 6}, + [2576] = {.lex_state = 63, .external_lex_state = 2}, + [2577] = {.lex_state = 63, .external_lex_state = 2}, + [2578] = {.lex_state = 63, .external_lex_state = 2}, + [2579] = {.lex_state = 293, .external_lex_state = 5}, + [2580] = {.lex_state = 293, .external_lex_state = 5}, + [2581] = {.lex_state = 293, .external_lex_state = 7}, + [2582] = {.lex_state = 293, .external_lex_state = 7}, + [2583] = {.lex_state = 287, .external_lex_state = 7}, + [2584] = {.lex_state = 277, .external_lex_state = 2}, + [2585] = {.lex_state = 90, .external_lex_state = 4}, + [2586] = {.lex_state = 120, .external_lex_state = 8}, + [2587] = {.lex_state = 287, .external_lex_state = 7}, + [2588] = {.lex_state = 258}, + [2589] = {.lex_state = 275, .external_lex_state = 4}, + [2590] = {.lex_state = 291, .external_lex_state = 8}, + [2591] = {.lex_state = 277, .external_lex_state = 2}, + [2592] = {.lex_state = 258}, + [2593] = {.lex_state = 275, .external_lex_state = 4}, + [2594] = {.lex_state = 291, .external_lex_state = 8}, + [2595] = {.lex_state = 80}, + [2596] = {.lex_state = 90, .external_lex_state = 4}, + [2597] = {.lex_state = 120, .external_lex_state = 8}, + [2598] = {.lex_state = 175, .external_lex_state = 2}, + [2599] = {.lex_state = 175, .external_lex_state = 2}, + [2600] = {.lex_state = 80}, + [2601] = {.lex_state = 90, .external_lex_state = 4}, + [2602] = {.lex_state = 120, .external_lex_state = 8}, + [2603] = {.lex_state = 175, .external_lex_state = 2}, + [2604] = {.lex_state = 175, .external_lex_state = 2}, + [2605] = {.lex_state = 248, .external_lex_state = 23}, + [2606] = {.lex_state = 248, .external_lex_state = 23}, + [2607] = {.lex_state = 214, .external_lex_state = 22}, + [2608] = {.lex_state = 214, .external_lex_state = 22}, + [2609] = {.lex_state = 214, .external_lex_state = 16}, + [2610] = {.lex_state = 237, .external_lex_state = 16}, + [2611] = {.lex_state = 248, .external_lex_state = 23}, + [2612] = {.lex_state = 237, .external_lex_state = 16}, + [2613] = {.lex_state = 248, .external_lex_state = 23}, + [2614] = {.lex_state = 237, .external_lex_state = 16}, + [2615] = {.lex_state = 248, .external_lex_state = 23}, + [2616] = {.lex_state = 237, .external_lex_state = 16}, + [2617] = {.lex_state = 248, .external_lex_state = 23}, + [2618] = {.lex_state = 237, .external_lex_state = 16}, + [2619] = {.lex_state = 248, .external_lex_state = 23}, + [2620] = {.lex_state = 237, .external_lex_state = 16}, + [2621] = {.lex_state = 248, .external_lex_state = 23}, + [2622] = {.lex_state = 248, .external_lex_state = 23}, + [2623] = {.lex_state = 214, .external_lex_state = 22}, + [2624] = {.lex_state = 214, .external_lex_state = 22}, + [2625] = {.lex_state = 214, .external_lex_state = 22}, + [2626] = {.lex_state = 237, .external_lex_state = 16}, + [2627] = {.lex_state = 214, .external_lex_state = 22}, + [2628] = {.lex_state = 237, .external_lex_state = 16}, + [2629] = {.lex_state = 214, .external_lex_state = 22}, + [2630] = {.lex_state = 237, .external_lex_state = 16}, + [2631] = {.lex_state = 214, .external_lex_state = 22}, + [2632] = {.lex_state = 214, .external_lex_state = 22}, + [2633] = {.lex_state = 214, .external_lex_state = 22}, + [2634] = {.lex_state = 237, .external_lex_state = 22}, + [2635] = {.lex_state = 237, .external_lex_state = 22}, + [2636] = {.lex_state = 237, .external_lex_state = 22}, + [2637] = {.lex_state = 178, .external_lex_state = 17}, + [2638] = {.lex_state = 178, .external_lex_state = 17}, + [2639] = {.lex_state = 178, .external_lex_state = 17}, + [2640] = {.lex_state = 210, .external_lex_state = 13}, + [2641] = {.lex_state = 210, .external_lex_state = 13}, + [2642] = {.lex_state = 210, .external_lex_state = 13}, + [2643] = {.lex_state = 270, .external_lex_state = 13}, + [2644] = {.lex_state = 270, .external_lex_state = 13}, + [2645] = {.lex_state = 270, .external_lex_state = 13}, + [2646] = {.lex_state = 237, .external_lex_state = 16}, + [2647] = {.lex_state = 270, .external_lex_state = 13}, + [2648] = {.lex_state = 237, .external_lex_state = 16}, + [2649] = {.lex_state = 270, .external_lex_state = 13}, + [2650] = {.lex_state = 237, .external_lex_state = 16}, + [2651] = {.lex_state = 270, .external_lex_state = 13}, + [2652] = {.lex_state = 270, .external_lex_state = 13}, + [2653] = {.lex_state = 270, .external_lex_state = 13}, + [2654] = {.lex_state = 256, .external_lex_state = 10}, + [2655] = {.lex_state = 256, .external_lex_state = 10}, + [2656] = {.lex_state = 256, .external_lex_state = 10}, + [2657] = {.lex_state = 291, .external_lex_state = 8}, + [2658] = {.lex_state = 210}, + [2659] = {.lex_state = 80}, + [2660] = {.lex_state = 291, .external_lex_state = 19}, + [2661] = {.lex_state = 291, .external_lex_state = 19}, + [2662] = {.lex_state = 164}, + [2663] = {.lex_state = 97}, + [2664] = {.lex_state = 291, .external_lex_state = 19}, + [2665] = {.lex_state = 291, .external_lex_state = 19}, + [2666] = {.lex_state = 291, .external_lex_state = 19}, + [2667] = {.lex_state = 69}, + [2668] = {.lex_state = 170, .external_lex_state = 6}, + [2669] = {.lex_state = 172, .external_lex_state = 16}, + [2670] = {.lex_state = 172, .external_lex_state = 16}, + [2671] = {.lex_state = 172, .external_lex_state = 16}, + [2672] = {.lex_state = 135, .external_lex_state = 4}, + [2673] = {.lex_state = 139, .external_lex_state = 8}, + [2674] = {.lex_state = 63, .external_lex_state = 2}, + [2675] = {.lex_state = 90, .external_lex_state = 4}, + [2676] = {.lex_state = 120, .external_lex_state = 8}, + [2677] = {.lex_state = 63, .external_lex_state = 2}, + [2678] = {.lex_state = 135, .external_lex_state = 4}, + [2679] = {.lex_state = 139, .external_lex_state = 8}, + [2680] = {.lex_state = 63, .external_lex_state = 2}, + [2681] = {.lex_state = 293, .external_lex_state = 7}, + [2682] = {.lex_state = 133}, + [2683] = {.lex_state = 63}, + [2684] = {.lex_state = 80}, + [2685] = {.lex_state = 63}, + [2686] = {.lex_state = 80}, + [2687] = {.lex_state = 80}, + [2688] = {.lex_state = 293, .external_lex_state = 21}, + [2689] = {.lex_state = 281, .external_lex_state = 3}, + [2690] = {.lex_state = 210}, + [2691] = {.lex_state = 281, .external_lex_state = 14}, + [2692] = {.lex_state = 281, .external_lex_state = 14}, + [2693] = {.lex_state = 281, .external_lex_state = 14}, + [2694] = {.lex_state = 281, .external_lex_state = 14}, + [2695] = {.lex_state = 281, .external_lex_state = 14}, + [2696] = {.lex_state = 164}, + [2697] = {.lex_state = 235, .external_lex_state = 16}, + [2698] = {.lex_state = 69}, + [2699] = {.lex_state = 172, .external_lex_state = 16}, + [2700] = {.lex_state = 172, .external_lex_state = 16}, + [2701] = {.lex_state = 172, .external_lex_state = 16}, + [2702] = {.lex_state = 281, .external_lex_state = 14}, + [2703] = {.lex_state = 239}, + [2704] = {.lex_state = 237, .external_lex_state = 16}, + [2705] = {.lex_state = 281, .external_lex_state = 14}, + [2706] = {.lex_state = 239}, + [2707] = {.lex_state = 237, .external_lex_state = 16}, + [2708] = {.lex_state = 281, .external_lex_state = 14}, + [2709] = {.lex_state = 239}, + [2710] = {.lex_state = 237, .external_lex_state = 16}, + [2711] = {.lex_state = 281, .external_lex_state = 14}, + [2712] = {.lex_state = 219, .external_lex_state = 2}, + [2713] = {.lex_state = 135, .external_lex_state = 4}, + [2714] = {.lex_state = 139, .external_lex_state = 8}, + [2715] = {.lex_state = 63, .external_lex_state = 2}, + [2716] = {.lex_state = 90, .external_lex_state = 4}, + [2717] = {.lex_state = 120, .external_lex_state = 8}, + [2718] = {.lex_state = 281, .external_lex_state = 14}, + [2719] = {.lex_state = 219, .external_lex_state = 2}, + [2720] = {.lex_state = 135, .external_lex_state = 4}, + [2721] = {.lex_state = 139, .external_lex_state = 8}, + [2722] = {.lex_state = 281, .external_lex_state = 10}, + [2723] = {.lex_state = 281, .external_lex_state = 10}, + [2724] = {.lex_state = 281, .external_lex_state = 10}, + [2725] = {.lex_state = 164}, + [2726] = {.lex_state = 235, .external_lex_state = 16}, + [2727] = {.lex_state = 69}, + [2728] = {.lex_state = 172, .external_lex_state = 16}, + [2729] = {.lex_state = 172, .external_lex_state = 16}, + [2730] = {.lex_state = 172, .external_lex_state = 16}, + [2731] = {.lex_state = 281, .external_lex_state = 10}, + [2732] = {.lex_state = 239}, + [2733] = {.lex_state = 237, .external_lex_state = 16}, + [2734] = {.lex_state = 281, .external_lex_state = 10}, + [2735] = {.lex_state = 239}, + [2736] = {.lex_state = 237, .external_lex_state = 16}, + [2737] = {.lex_state = 281, .external_lex_state = 10}, + [2738] = {.lex_state = 239}, + [2739] = {.lex_state = 237, .external_lex_state = 16}, + [2740] = {.lex_state = 281, .external_lex_state = 10}, + [2741] = {.lex_state = 219, .external_lex_state = 2}, + [2742] = {.lex_state = 135, .external_lex_state = 4}, + [2743] = {.lex_state = 139, .external_lex_state = 8}, + [2744] = {.lex_state = 63, .external_lex_state = 2}, + [2745] = {.lex_state = 90, .external_lex_state = 4}, + [2746] = {.lex_state = 120, .external_lex_state = 8}, + [2747] = {.lex_state = 281, .external_lex_state = 10}, + [2748] = {.lex_state = 219, .external_lex_state = 2}, + [2749] = {.lex_state = 135, .external_lex_state = 4}, + [2750] = {.lex_state = 139, .external_lex_state = 8}, + [2751] = {.lex_state = 287, .external_lex_state = 5}, + [2752] = {.lex_state = 287, .external_lex_state = 5}, + [2753] = {.lex_state = 214, .external_lex_state = 22}, + [2754] = {.lex_state = 214, .external_lex_state = 22}, + [2755] = {.lex_state = 214, .external_lex_state = 16}, + [2756] = {.lex_state = 235, .external_lex_state = 16}, + [2757] = {.lex_state = 287, .external_lex_state = 5}, + [2758] = {.lex_state = 239}, + [2759] = {.lex_state = 237, .external_lex_state = 16}, + [2760] = {.lex_state = 287, .external_lex_state = 5}, + [2761] = {.lex_state = 239}, + [2762] = {.lex_state = 237, .external_lex_state = 16}, + [2763] = {.lex_state = 239}, + [2764] = {.lex_state = 237, .external_lex_state = 16}, + [2765] = {.lex_state = 237, .external_lex_state = 16}, + [2766] = {.lex_state = 287, .external_lex_state = 5}, + [2767] = {.lex_state = 237, .external_lex_state = 16}, + [2768] = {.lex_state = 287, .external_lex_state = 5}, + [2769] = {.lex_state = 237, .external_lex_state = 16}, + [2770] = {.lex_state = 287, .external_lex_state = 5}, + [2771] = {.lex_state = 219, .external_lex_state = 2}, + [2772] = {.lex_state = 63, .external_lex_state = 2}, + [2773] = {.lex_state = 287, .external_lex_state = 5}, + [2774] = {.lex_state = 219, .external_lex_state = 2}, + [2775] = {.lex_state = 295, .external_lex_state = 21}, + [2776] = {.lex_state = 293, .external_lex_state = 5}, + [2777] = {.lex_state = 293, .external_lex_state = 5}, + [2778] = {.lex_state = 80}, + [2779] = {.lex_state = 293, .external_lex_state = 5}, + [2780] = {.lex_state = 293, .external_lex_state = 5}, + [2781] = {.lex_state = 164}, + [2782] = {.lex_state = 97}, + [2783] = {.lex_state = 293, .external_lex_state = 5}, + [2784] = {.lex_state = 293, .external_lex_state = 5}, + [2785] = {.lex_state = 293, .external_lex_state = 5}, + [2786] = {.lex_state = 69}, + [2787] = {.lex_state = 170, .external_lex_state = 6}, + [2788] = {.lex_state = 172, .external_lex_state = 16}, + [2789] = {.lex_state = 172, .external_lex_state = 16}, + [2790] = {.lex_state = 172, .external_lex_state = 16}, + [2791] = {.lex_state = 135, .external_lex_state = 4}, + [2792] = {.lex_state = 139, .external_lex_state = 8}, + [2793] = {.lex_state = 63, .external_lex_state = 2}, + [2794] = {.lex_state = 90, .external_lex_state = 4}, + [2795] = {.lex_state = 120, .external_lex_state = 8}, + [2796] = {.lex_state = 63, .external_lex_state = 2}, + [2797] = {.lex_state = 135, .external_lex_state = 4}, + [2798] = {.lex_state = 139, .external_lex_state = 8}, + [2799] = {.lex_state = 63, .external_lex_state = 2}, + [2800] = {.lex_state = 293, .external_lex_state = 7}, + [2801] = {.lex_state = 277, .external_lex_state = 2}, + [2802] = {.lex_state = 277, .external_lex_state = 2}, + [2803] = {.lex_state = 175, .external_lex_state = 2}, + [2804] = {.lex_state = 80}, + [2805] = {.lex_state = 90, .external_lex_state = 4}, + [2806] = {.lex_state = 120, .external_lex_state = 8}, + [2807] = {.lex_state = 175, .external_lex_state = 2}, + [2808] = {.lex_state = 175, .external_lex_state = 2}, + [2809] = {.lex_state = 175, .external_lex_state = 2}, + [2810] = {.lex_state = 80}, + [2811] = {.lex_state = 90, .external_lex_state = 4}, + [2812] = {.lex_state = 120, .external_lex_state = 8}, + [2813] = {.lex_state = 175, .external_lex_state = 2}, + [2814] = {.lex_state = 248, .external_lex_state = 23}, + [2815] = {.lex_state = 248, .external_lex_state = 23}, + [2816] = {.lex_state = 248, .external_lex_state = 23}, + [2817] = {.lex_state = 237, .external_lex_state = 16}, + [2818] = {.lex_state = 248, .external_lex_state = 23}, + [2819] = {.lex_state = 237, .external_lex_state = 16}, + [2820] = {.lex_state = 248, .external_lex_state = 23}, + [2821] = {.lex_state = 237, .external_lex_state = 16}, + [2822] = {.lex_state = 248, .external_lex_state = 23}, + [2823] = {.lex_state = 248, .external_lex_state = 23}, + [2824] = {.lex_state = 248, .external_lex_state = 23}, + [2825] = {.lex_state = 214, .external_lex_state = 22}, + [2826] = {.lex_state = 214, .external_lex_state = 22}, + [2827] = {.lex_state = 214, .external_lex_state = 22}, + [2828] = {.lex_state = 270, .external_lex_state = 13}, + [2829] = {.lex_state = 270, .external_lex_state = 13}, + [2830] = {.lex_state = 270, .external_lex_state = 13}, + [2831] = {.lex_state = 291, .external_lex_state = 8}, + [2832] = {.lex_state = 291, .external_lex_state = 19}, + [2833] = {.lex_state = 291, .external_lex_state = 19}, + [2834] = {.lex_state = 291, .external_lex_state = 19}, + [2835] = {.lex_state = 164}, + [2836] = {.lex_state = 235, .external_lex_state = 16}, + [2837] = {.lex_state = 69}, + [2838] = {.lex_state = 172, .external_lex_state = 16}, + [2839] = {.lex_state = 172, .external_lex_state = 16}, + [2840] = {.lex_state = 172, .external_lex_state = 16}, + [2841] = {.lex_state = 291, .external_lex_state = 19}, + [2842] = {.lex_state = 239}, + [2843] = {.lex_state = 237, .external_lex_state = 16}, + [2844] = {.lex_state = 291, .external_lex_state = 19}, + [2845] = {.lex_state = 239}, + [2846] = {.lex_state = 237, .external_lex_state = 16}, + [2847] = {.lex_state = 291, .external_lex_state = 19}, + [2848] = {.lex_state = 239}, + [2849] = {.lex_state = 237, .external_lex_state = 16}, + [2850] = {.lex_state = 291, .external_lex_state = 19}, + [2851] = {.lex_state = 219, .external_lex_state = 2}, + [2852] = {.lex_state = 135, .external_lex_state = 4}, + [2853] = {.lex_state = 139, .external_lex_state = 8}, + [2854] = {.lex_state = 63, .external_lex_state = 2}, + [2855] = {.lex_state = 90, .external_lex_state = 4}, + [2856] = {.lex_state = 120, .external_lex_state = 8}, + [2857] = {.lex_state = 291, .external_lex_state = 19}, + [2858] = {.lex_state = 219, .external_lex_state = 2}, + [2859] = {.lex_state = 135, .external_lex_state = 4}, + [2860] = {.lex_state = 139, .external_lex_state = 8}, + [2861] = {.lex_state = 295, .external_lex_state = 21}, + [2862] = {.lex_state = 80}, + [2863] = {.lex_state = 275, .external_lex_state = 10}, + [2864] = {.lex_state = 275, .external_lex_state = 10}, + [2865] = {.lex_state = 80}, + [2866] = {.lex_state = 293, .external_lex_state = 23}, + [2867] = {.lex_state = 293, .external_lex_state = 23}, + [2868] = {.lex_state = 293, .external_lex_state = 23}, + [2869] = {.lex_state = 293, .external_lex_state = 23}, + [2870] = {.lex_state = 293, .external_lex_state = 21}, + [2871] = {.lex_state = 281, .external_lex_state = 3}, + [2872] = {.lex_state = 210}, + [2873] = {.lex_state = 281, .external_lex_state = 14}, + [2874] = {.lex_state = 281, .external_lex_state = 14}, + [2875] = {.lex_state = 214, .external_lex_state = 22}, + [2876] = {.lex_state = 214, .external_lex_state = 22}, + [2877] = {.lex_state = 214, .external_lex_state = 16}, + [2878] = {.lex_state = 235, .external_lex_state = 16}, + [2879] = {.lex_state = 281, .external_lex_state = 14}, + [2880] = {.lex_state = 239}, + [2881] = {.lex_state = 237, .external_lex_state = 16}, + [2882] = {.lex_state = 281, .external_lex_state = 14}, + [2883] = {.lex_state = 239}, + [2884] = {.lex_state = 237, .external_lex_state = 16}, + [2885] = {.lex_state = 239}, + [2886] = {.lex_state = 237, .external_lex_state = 16}, + [2887] = {.lex_state = 237, .external_lex_state = 16}, + [2888] = {.lex_state = 281, .external_lex_state = 14}, + [2889] = {.lex_state = 237, .external_lex_state = 16}, + [2890] = {.lex_state = 281, .external_lex_state = 14}, + [2891] = {.lex_state = 237, .external_lex_state = 16}, + [2892] = {.lex_state = 281, .external_lex_state = 14}, + [2893] = {.lex_state = 219, .external_lex_state = 2}, + [2894] = {.lex_state = 63, .external_lex_state = 2}, + [2895] = {.lex_state = 281, .external_lex_state = 14}, + [2896] = {.lex_state = 219, .external_lex_state = 2}, + [2897] = {.lex_state = 281, .external_lex_state = 10}, + [2898] = {.lex_state = 281, .external_lex_state = 10}, + [2899] = {.lex_state = 214, .external_lex_state = 22}, + [2900] = {.lex_state = 214, .external_lex_state = 22}, + [2901] = {.lex_state = 214, .external_lex_state = 16}, + [2902] = {.lex_state = 235, .external_lex_state = 16}, + [2903] = {.lex_state = 281, .external_lex_state = 10}, + [2904] = {.lex_state = 239}, + [2905] = {.lex_state = 237, .external_lex_state = 16}, + [2906] = {.lex_state = 281, .external_lex_state = 10}, + [2907] = {.lex_state = 239}, + [2908] = {.lex_state = 237, .external_lex_state = 16}, + [2909] = {.lex_state = 239}, + [2910] = {.lex_state = 237, .external_lex_state = 16}, + [2911] = {.lex_state = 237, .external_lex_state = 16}, + [2912] = {.lex_state = 281, .external_lex_state = 10}, + [2913] = {.lex_state = 237, .external_lex_state = 16}, + [2914] = {.lex_state = 281, .external_lex_state = 10}, + [2915] = {.lex_state = 237, .external_lex_state = 16}, + [2916] = {.lex_state = 281, .external_lex_state = 10}, + [2917] = {.lex_state = 219, .external_lex_state = 2}, + [2918] = {.lex_state = 63, .external_lex_state = 2}, + [2919] = {.lex_state = 281, .external_lex_state = 10}, + [2920] = {.lex_state = 219, .external_lex_state = 2}, + [2921] = {.lex_state = 287, .external_lex_state = 5}, + [2922] = {.lex_state = 287, .external_lex_state = 5}, + [2923] = {.lex_state = 214, .external_lex_state = 22}, + [2924] = {.lex_state = 214, .external_lex_state = 22}, + [2925] = {.lex_state = 214, .external_lex_state = 16}, + [2926] = {.lex_state = 237, .external_lex_state = 16}, + [2927] = {.lex_state = 287, .external_lex_state = 5}, + [2928] = {.lex_state = 237, .external_lex_state = 16}, + [2929] = {.lex_state = 287, .external_lex_state = 5}, + [2930] = {.lex_state = 237, .external_lex_state = 16}, + [2931] = {.lex_state = 287, .external_lex_state = 5}, + [2932] = {.lex_state = 237, .external_lex_state = 16}, + [2933] = {.lex_state = 287, .external_lex_state = 5}, + [2934] = {.lex_state = 237, .external_lex_state = 16}, + [2935] = {.lex_state = 287, .external_lex_state = 5}, + [2936] = {.lex_state = 237, .external_lex_state = 16}, + [2937] = {.lex_state = 287, .external_lex_state = 5}, + [2938] = {.lex_state = 287, .external_lex_state = 5}, + [2939] = {.lex_state = 293, .external_lex_state = 5}, + [2940] = {.lex_state = 293, .external_lex_state = 5}, + [2941] = {.lex_state = 293, .external_lex_state = 5}, + [2942] = {.lex_state = 164}, + [2943] = {.lex_state = 235, .external_lex_state = 16}, + [2944] = {.lex_state = 69}, + [2945] = {.lex_state = 172, .external_lex_state = 16}, + [2946] = {.lex_state = 172, .external_lex_state = 16}, + [2947] = {.lex_state = 172, .external_lex_state = 16}, + [2948] = {.lex_state = 293, .external_lex_state = 5}, + [2949] = {.lex_state = 239}, + [2950] = {.lex_state = 237, .external_lex_state = 16}, + [2951] = {.lex_state = 293, .external_lex_state = 5}, + [2952] = {.lex_state = 239}, + [2953] = {.lex_state = 237, .external_lex_state = 16}, + [2954] = {.lex_state = 293, .external_lex_state = 5}, + [2955] = {.lex_state = 239}, + [2956] = {.lex_state = 237, .external_lex_state = 16}, + [2957] = {.lex_state = 293, .external_lex_state = 5}, + [2958] = {.lex_state = 219, .external_lex_state = 2}, + [2959] = {.lex_state = 135, .external_lex_state = 4}, + [2960] = {.lex_state = 139, .external_lex_state = 8}, + [2961] = {.lex_state = 63, .external_lex_state = 2}, + [2962] = {.lex_state = 90, .external_lex_state = 4}, + [2963] = {.lex_state = 120, .external_lex_state = 8}, + [2964] = {.lex_state = 293, .external_lex_state = 5}, + [2965] = {.lex_state = 219, .external_lex_state = 2}, + [2966] = {.lex_state = 135, .external_lex_state = 4}, + [2967] = {.lex_state = 139, .external_lex_state = 8}, + [2968] = {.lex_state = 175, .external_lex_state = 2}, + [2969] = {.lex_state = 80}, + [2970] = {.lex_state = 90, .external_lex_state = 4}, + [2971] = {.lex_state = 120, .external_lex_state = 8}, + [2972] = {.lex_state = 175, .external_lex_state = 2}, + [2973] = {.lex_state = 80}, + [2974] = {.lex_state = 90, .external_lex_state = 4}, + [2975] = {.lex_state = 120, .external_lex_state = 8}, + [2976] = {.lex_state = 248, .external_lex_state = 23}, + [2977] = {.lex_state = 248, .external_lex_state = 23}, + [2978] = {.lex_state = 248, .external_lex_state = 23}, + [2979] = {.lex_state = 291, .external_lex_state = 19}, + [2980] = {.lex_state = 291, .external_lex_state = 19}, + [2981] = {.lex_state = 214, .external_lex_state = 22}, + [2982] = {.lex_state = 214, .external_lex_state = 22}, + [2983] = {.lex_state = 214, .external_lex_state = 16}, + [2984] = {.lex_state = 235, .external_lex_state = 16}, + [2985] = {.lex_state = 291, .external_lex_state = 19}, + [2986] = {.lex_state = 239}, + [2987] = {.lex_state = 237, .external_lex_state = 16}, + [2988] = {.lex_state = 291, .external_lex_state = 19}, + [2989] = {.lex_state = 239}, + [2990] = {.lex_state = 237, .external_lex_state = 16}, + [2991] = {.lex_state = 239}, + [2992] = {.lex_state = 237, .external_lex_state = 16}, + [2993] = {.lex_state = 237, .external_lex_state = 16}, + [2994] = {.lex_state = 291, .external_lex_state = 19}, + [2995] = {.lex_state = 237, .external_lex_state = 16}, + [2996] = {.lex_state = 291, .external_lex_state = 19}, + [2997] = {.lex_state = 237, .external_lex_state = 16}, + [2998] = {.lex_state = 291, .external_lex_state = 19}, + [2999] = {.lex_state = 219, .external_lex_state = 2}, + [3000] = {.lex_state = 63, .external_lex_state = 2}, + [3001] = {.lex_state = 291, .external_lex_state = 19}, + [3002] = {.lex_state = 219, .external_lex_state = 2}, + [3003] = {.lex_state = 275, .external_lex_state = 10}, + [3004] = {.lex_state = 275, .external_lex_state = 10}, + [3005] = {.lex_state = 275, .external_lex_state = 10}, + [3006] = {.lex_state = 293, .external_lex_state = 23}, + [3007] = {.lex_state = 293, .external_lex_state = 23}, + [3008] = {.lex_state = 293, .external_lex_state = 23}, + [3009] = {.lex_state = 281, .external_lex_state = 3}, + [3010] = {.lex_state = 281, .external_lex_state = 14}, + [3011] = {.lex_state = 281, .external_lex_state = 14}, + [3012] = {.lex_state = 214, .external_lex_state = 22}, + [3013] = {.lex_state = 214, .external_lex_state = 22}, + [3014] = {.lex_state = 214, .external_lex_state = 16}, + [3015] = {.lex_state = 237, .external_lex_state = 16}, + [3016] = {.lex_state = 281, .external_lex_state = 14}, + [3017] = {.lex_state = 237, .external_lex_state = 16}, + [3018] = {.lex_state = 281, .external_lex_state = 14}, + [3019] = {.lex_state = 237, .external_lex_state = 16}, + [3020] = {.lex_state = 281, .external_lex_state = 14}, + [3021] = {.lex_state = 237, .external_lex_state = 16}, + [3022] = {.lex_state = 281, .external_lex_state = 14}, + [3023] = {.lex_state = 237, .external_lex_state = 16}, + [3024] = {.lex_state = 281, .external_lex_state = 14}, + [3025] = {.lex_state = 237, .external_lex_state = 16}, + [3026] = {.lex_state = 281, .external_lex_state = 14}, + [3027] = {.lex_state = 281, .external_lex_state = 14}, + [3028] = {.lex_state = 281, .external_lex_state = 10}, + [3029] = {.lex_state = 281, .external_lex_state = 10}, + [3030] = {.lex_state = 214, .external_lex_state = 22}, + [3031] = {.lex_state = 214, .external_lex_state = 22}, + [3032] = {.lex_state = 214, .external_lex_state = 16}, + [3033] = {.lex_state = 237, .external_lex_state = 16}, + [3034] = {.lex_state = 281, .external_lex_state = 10}, + [3035] = {.lex_state = 237, .external_lex_state = 16}, + [3036] = {.lex_state = 281, .external_lex_state = 10}, + [3037] = {.lex_state = 237, .external_lex_state = 16}, + [3038] = {.lex_state = 281, .external_lex_state = 10}, + [3039] = {.lex_state = 237, .external_lex_state = 16}, + [3040] = {.lex_state = 281, .external_lex_state = 10}, + [3041] = {.lex_state = 237, .external_lex_state = 16}, + [3042] = {.lex_state = 281, .external_lex_state = 10}, + [3043] = {.lex_state = 237, .external_lex_state = 16}, + [3044] = {.lex_state = 281, .external_lex_state = 10}, + [3045] = {.lex_state = 281, .external_lex_state = 10}, + [3046] = {.lex_state = 287, .external_lex_state = 5}, + [3047] = {.lex_state = 287, .external_lex_state = 5}, + [3048] = {.lex_state = 287, .external_lex_state = 5}, + [3049] = {.lex_state = 237, .external_lex_state = 16}, + [3050] = {.lex_state = 287, .external_lex_state = 5}, + [3051] = {.lex_state = 237, .external_lex_state = 16}, + [3052] = {.lex_state = 287, .external_lex_state = 5}, + [3053] = {.lex_state = 237, .external_lex_state = 16}, + [3054] = {.lex_state = 287, .external_lex_state = 5}, + [3055] = {.lex_state = 287, .external_lex_state = 5}, + [3056] = {.lex_state = 287, .external_lex_state = 5}, + [3057] = {.lex_state = 293, .external_lex_state = 5}, + [3058] = {.lex_state = 293, .external_lex_state = 5}, + [3059] = {.lex_state = 214, .external_lex_state = 22}, + [3060] = {.lex_state = 214, .external_lex_state = 22}, + [3061] = {.lex_state = 214, .external_lex_state = 16}, + [3062] = {.lex_state = 235, .external_lex_state = 16}, + [3063] = {.lex_state = 293, .external_lex_state = 5}, + [3064] = {.lex_state = 239}, + [3065] = {.lex_state = 237, .external_lex_state = 16}, + [3066] = {.lex_state = 293, .external_lex_state = 5}, + [3067] = {.lex_state = 239}, + [3068] = {.lex_state = 237, .external_lex_state = 16}, + [3069] = {.lex_state = 239}, + [3070] = {.lex_state = 237, .external_lex_state = 16}, + [3071] = {.lex_state = 237, .external_lex_state = 16}, + [3072] = {.lex_state = 293, .external_lex_state = 5}, + [3073] = {.lex_state = 237, .external_lex_state = 16}, + [3074] = {.lex_state = 293, .external_lex_state = 5}, + [3075] = {.lex_state = 237, .external_lex_state = 16}, + [3076] = {.lex_state = 293, .external_lex_state = 5}, + [3077] = {.lex_state = 219, .external_lex_state = 2}, + [3078] = {.lex_state = 63, .external_lex_state = 2}, + [3079] = {.lex_state = 293, .external_lex_state = 5}, + [3080] = {.lex_state = 219, .external_lex_state = 2}, + [3081] = {.lex_state = 175, .external_lex_state = 2}, + [3082] = {.lex_state = 175, .external_lex_state = 2}, + [3083] = {.lex_state = 291, .external_lex_state = 19}, + [3084] = {.lex_state = 291, .external_lex_state = 19}, + [3085] = {.lex_state = 214, .external_lex_state = 22}, + [3086] = {.lex_state = 214, .external_lex_state = 22}, + [3087] = {.lex_state = 214, .external_lex_state = 16}, + [3088] = {.lex_state = 237, .external_lex_state = 16}, + [3089] = {.lex_state = 291, .external_lex_state = 19}, + [3090] = {.lex_state = 237, .external_lex_state = 16}, + [3091] = {.lex_state = 291, .external_lex_state = 19}, + [3092] = {.lex_state = 237, .external_lex_state = 16}, + [3093] = {.lex_state = 291, .external_lex_state = 19}, + [3094] = {.lex_state = 237, .external_lex_state = 16}, + [3095] = {.lex_state = 291, .external_lex_state = 19}, + [3096] = {.lex_state = 237, .external_lex_state = 16}, + [3097] = {.lex_state = 291, .external_lex_state = 19}, + [3098] = {.lex_state = 237, .external_lex_state = 16}, + [3099] = {.lex_state = 291, .external_lex_state = 19}, + [3100] = {.lex_state = 291, .external_lex_state = 19}, + [3101] = {.lex_state = 275, .external_lex_state = 10}, + [3102] = {.lex_state = 293, .external_lex_state = 23}, + [3103] = {.lex_state = 281, .external_lex_state = 14}, + [3104] = {.lex_state = 281, .external_lex_state = 14}, + [3105] = {.lex_state = 281, .external_lex_state = 14}, + [3106] = {.lex_state = 237, .external_lex_state = 16}, + [3107] = {.lex_state = 281, .external_lex_state = 14}, + [3108] = {.lex_state = 237, .external_lex_state = 16}, + [3109] = {.lex_state = 281, .external_lex_state = 14}, + [3110] = {.lex_state = 237, .external_lex_state = 16}, + [3111] = {.lex_state = 281, .external_lex_state = 14}, + [3112] = {.lex_state = 281, .external_lex_state = 14}, + [3113] = {.lex_state = 281, .external_lex_state = 14}, + [3114] = {.lex_state = 281, .external_lex_state = 10}, + [3115] = {.lex_state = 281, .external_lex_state = 10}, + [3116] = {.lex_state = 281, .external_lex_state = 10}, + [3117] = {.lex_state = 237, .external_lex_state = 16}, + [3118] = {.lex_state = 281, .external_lex_state = 10}, + [3119] = {.lex_state = 237, .external_lex_state = 16}, + [3120] = {.lex_state = 281, .external_lex_state = 10}, + [3121] = {.lex_state = 237, .external_lex_state = 16}, + [3122] = {.lex_state = 281, .external_lex_state = 10}, + [3123] = {.lex_state = 281, .external_lex_state = 10}, + [3124] = {.lex_state = 281, .external_lex_state = 10}, + [3125] = {.lex_state = 287, .external_lex_state = 5}, + [3126] = {.lex_state = 287, .external_lex_state = 5}, + [3127] = {.lex_state = 287, .external_lex_state = 5}, + [3128] = {.lex_state = 293, .external_lex_state = 5}, + [3129] = {.lex_state = 293, .external_lex_state = 5}, + [3130] = {.lex_state = 214, .external_lex_state = 22}, + [3131] = {.lex_state = 214, .external_lex_state = 22}, + [3132] = {.lex_state = 214, .external_lex_state = 16}, + [3133] = {.lex_state = 237, .external_lex_state = 16}, + [3134] = {.lex_state = 293, .external_lex_state = 5}, + [3135] = {.lex_state = 237, .external_lex_state = 16}, + [3136] = {.lex_state = 293, .external_lex_state = 5}, + [3137] = {.lex_state = 237, .external_lex_state = 16}, + [3138] = {.lex_state = 293, .external_lex_state = 5}, + [3139] = {.lex_state = 237, .external_lex_state = 16}, + [3140] = {.lex_state = 293, .external_lex_state = 5}, + [3141] = {.lex_state = 237, .external_lex_state = 16}, + [3142] = {.lex_state = 293, .external_lex_state = 5}, + [3143] = {.lex_state = 237, .external_lex_state = 16}, + [3144] = {.lex_state = 293, .external_lex_state = 5}, + [3145] = {.lex_state = 293, .external_lex_state = 5}, + [3146] = {.lex_state = 291, .external_lex_state = 19}, + [3147] = {.lex_state = 291, .external_lex_state = 19}, + [3148] = {.lex_state = 291, .external_lex_state = 19}, + [3149] = {.lex_state = 237, .external_lex_state = 16}, + [3150] = {.lex_state = 291, .external_lex_state = 19}, + [3151] = {.lex_state = 237, .external_lex_state = 16}, + [3152] = {.lex_state = 291, .external_lex_state = 19}, + [3153] = {.lex_state = 237, .external_lex_state = 16}, + [3154] = {.lex_state = 291, .external_lex_state = 19}, + [3155] = {.lex_state = 291, .external_lex_state = 19}, + [3156] = {.lex_state = 291, .external_lex_state = 19}, + [3157] = {.lex_state = 281, .external_lex_state = 14}, + [3158] = {.lex_state = 281, .external_lex_state = 14}, + [3159] = {.lex_state = 281, .external_lex_state = 14}, + [3160] = {.lex_state = 281, .external_lex_state = 10}, + [3161] = {.lex_state = 281, .external_lex_state = 10}, + [3162] = {.lex_state = 281, .external_lex_state = 10}, + [3163] = {.lex_state = 293, .external_lex_state = 5}, + [3164] = {.lex_state = 293, .external_lex_state = 5}, + [3165] = {.lex_state = 293, .external_lex_state = 5}, + [3166] = {.lex_state = 237, .external_lex_state = 16}, + [3167] = {.lex_state = 293, .external_lex_state = 5}, + [3168] = {.lex_state = 237, .external_lex_state = 16}, + [3169] = {.lex_state = 293, .external_lex_state = 5}, + [3170] = {.lex_state = 237, .external_lex_state = 16}, + [3171] = {.lex_state = 293, .external_lex_state = 5}, + [3172] = {.lex_state = 293, .external_lex_state = 5}, + [3173] = {.lex_state = 293, .external_lex_state = 5}, + [3174] = {.lex_state = 291, .external_lex_state = 19}, + [3175] = {.lex_state = 291, .external_lex_state = 19}, + [3176] = {.lex_state = 291, .external_lex_state = 19}, + [3177] = {.lex_state = 293, .external_lex_state = 5}, + [3178] = {.lex_state = 293, .external_lex_state = 5}, + [3179] = {.lex_state = 293, .external_lex_state = 5}, }; enum { @@ -7843,6 +9039,7 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_variable_name] = true, [ts_external_token_RBRACE] = true, [ts_external_token_RBRACK] = true, + [ts_external_token_LF] = true, }, [2] = { [ts_external_token_file_descriptor] = true, @@ -8021,6 +9218,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(1), [anon_sym__] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(3), }, [1] = { @@ -8439,24 +9637,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_declaration_command_repeat1] = STATE(106), [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(175), - [anon_sym_LT_LPAREN] = ACTIONS(177), - [anon_sym_GT_LPAREN] = ACTIONS(177), - [sym_comment] = ACTIONS(179), + [anon_sym_SEMI_SEMI] = ACTIONS(163), + [anon_sym_PIPE_AMP] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [sym__special_characters] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(169), + [sym_raw_string] = ACTIONS(171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(175), + [anon_sym_BQUOTE] = ACTIONS(177), + [anon_sym_LT_LPAREN] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(179), + [sym_comment] = ACTIONS(53), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), - [sym_word] = ACTIONS(169), + [sym_word] = ACTIONS(183), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LF] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(163), [anon_sym_AMP] = ACTIONS(161), }, [14] = { @@ -8469,24 +9667,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(110), [aux_sym_unset_command_repeat1] = STATE(116), [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(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_SEMI] = ACTIONS(187), + [anon_sym_PIPE_AMP] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(187), + [anon_sym_PIPE_PIPE] = ACTIONS(187), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(195), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(205), + [sym_word] = ACTIONS(207), [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_LF] = ACTIONS(205), + [anon_sym_LF] = ACTIONS(187), [anon_sym_AMP] = ACTIONS(185), }, [15] = { @@ -8497,136 +9695,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(120), [sym_command_substitution] = STATE(120), [sym_process_substitution] = STATE(120), - [sym__special_characters] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym_raw_string] = ACTIONS(213), - [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__special_characters] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym_raw_string] = ACTIONS(215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), + [anon_sym_BQUOTE] = ACTIONS(221), + [anon_sym_LT_LPAREN] = ACTIONS(223), + [anon_sym_GT_LPAREN] = ACTIONS(223), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(213), + [sym_word] = ACTIONS(215), }, [16] = { [aux_sym_concatenation_repeat1] = STATE(127), - [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_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), + [sym__simple_heredoc_body] = ACTIONS(225), + [sym__heredoc_body_beginning] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(225), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(229), + [anon_sym_EQ_EQ] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_AMP_GT] = ACTIONS(229), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(229), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [sym__special_characters] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(229), + [sym_raw_string] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(229), + [anon_sym_LF] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(229), }, [17] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), [aux_sym_string_repeat1] = STATE(134), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [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_DQUOTE] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [18] = { [sym_string] = STATE(136), [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(241), - [sym_raw_string] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(241), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(245), - [anon_sym_STAR] = ACTIONS(241), - [anon_sym_AT] = ACTIONS(241), - [anon_sym_QMARK] = ACTIONS(241), - [anon_sym_0] = ACTIONS(247), - [anon_sym__] = ACTIONS(247), + [anon_sym_DOLLAR] = ACTIONS(245), + [sym_raw_string] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(245), + [anon_sym_DASH] = ACTIONS(245), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(245), + [anon_sym_QMARK] = ACTIONS(245), + [anon_sym_0] = ACTIONS(251), + [anon_sym__] = ACTIONS(251), }, [19] = { [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_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), + [sym__simple_heredoc_body] = ACTIONS(253), + [sym__heredoc_body_beginning] = ACTIONS(253), + [sym_file_descriptor] = ACTIONS(253), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(255), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_EQ_TILDE] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(255), + [anon_sym_GT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(255), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [anon_sym_LT_LT_LT] = ACTIONS(253), + [sym__special_characters] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym_raw_string] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(253), + [anon_sym_GT_LPAREN] = ACTIONS(253), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(255), }, [20] = { [sym_subscript] = STATE(142), - [sym_variable_name] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(255), - [anon_sym_DOLLAR] = ACTIONS(257), - [anon_sym_POUND] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(257), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(257), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_QMARK] = ACTIONS(257), - [anon_sym_0] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), + [sym_variable_name] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(259), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_POUND] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(261), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(263), + [anon_sym_STAR] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [anon_sym_QMARK] = ACTIONS(261), + [anon_sym_0] = ACTIONS(265), + [anon_sym__] = ACTIONS(265), }, [21] = { [sym__terminated_statement] = STATE(145), @@ -8726,21 +9924,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -8758,7 +9956,7 @@ 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(277), + [sym_word] = ACTIONS(281), }, [23] = { [sym__terminated_statement] = STATE(161), @@ -8828,57 +10026,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [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(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(251), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(249), - [anon_sym_AMP] = ACTIONS(251), + [sym__simple_heredoc_body] = ACTIONS(253), + [sym__heredoc_body_beginning] = ACTIONS(253), + [sym_file_descriptor] = ACTIONS(253), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(255), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(283), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_EQ_TILDE] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(255), + [anon_sym_GT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(255), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [anon_sym_LT_LT_LT] = ACTIONS(253), + [sym__special_characters] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym_raw_string] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(253), + [anon_sym_GT_LPAREN] = ACTIONS(253), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(255), }, [25] = { - [ts_builtin_sym_end] = ACTIONS(281), + [ts_builtin_sym_end] = ACTIONS(285), [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_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(289), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(295), [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(295), }, [27] = { [sym_file_redirect] = STATE(176), @@ -8894,70 +10092,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_SEMI_SEMI] = ACTIONS(305), + [anon_sym_PIPE_AMP] = ACTIONS(305), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(311), + [anon_sym_LT_AMP] = ACTIONS(311), + [anon_sym_GT_AMP] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(317), + [sym__special_characters] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(39), [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), + [sym_raw_string] = ACTIONS(321), + [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), + [anon_sym_SEMI] = ACTIONS(303), + [anon_sym_LF] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(303), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(289), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(295), [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(295), }, [29] = { [anon_sym_EQ] = ACTIONS(63), @@ -8965,64 +10163,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [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_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), - [sym_word] = ACTIONS(323), + [sym_word] = ACTIONS(325), }, [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(251), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(249), - [anon_sym_AMP] = ACTIONS(251), + [sym__simple_heredoc_body] = ACTIONS(253), + [sym__heredoc_body_beginning] = ACTIONS(253), + [sym_file_descriptor] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(255), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_EQ_TILDE] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(255), + [anon_sym_GT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(255), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [anon_sym_LT_LT_LT] = ACTIONS(253), + [sym__special_characters] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym_raw_string] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(253), + [anon_sym_GT_LPAREN] = ACTIONS(253), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(255), }, [32] = { [sym__terminated_statement] = STATE(178), @@ -9055,7 +10252,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), - [ts_builtin_sym_end] = ACTIONS(327), + [ts_builtin_sym_end] = ACTIONS(329), [anon_sym_for] = ACTIONS(11), [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), @@ -9113,7 +10310,7 @@ 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(329), + [sym__special_characters] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), [sym_raw_string] = ACTIONS(43), @@ -9133,17 +10330,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(333), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym_raw_string] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), + [anon_sym_BQUOTE] = ACTIONS(221), + [anon_sym_LT_LPAREN] = ACTIONS(223), + [anon_sym_GT_LPAREN] = ACTIONS(223), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(333), + [sym_word] = ACTIONS(335), }, [35] = { [sym_concatenation] = STATE(186), @@ -9153,17 +10350,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(185), [sym_command_substitution] = STATE(185), [sym_process_substitution] = STATE(185), - [sym__special_characters] = ACTIONS(335), + [sym__special_characters] = ACTIONS(337), [anon_sym_DQUOTE] = ACTIONS(117), [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(337), + [sym_raw_string] = ACTIONS(339), [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), + [sym_word] = ACTIONS(339), }, [36] = { [sym_concatenation] = STATE(187), @@ -9174,19 +10371,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__empty_value] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [sym__special_characters] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(349), + [sym_raw_string] = ACTIONS(351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LT_LPAREN] = ACTIONS(359), + [anon_sym_GT_LPAREN] = ACTIONS(359), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(349), + [sym_word] = ACTIONS(351), }, [37] = { [sym__expression] = STATE(208), @@ -9200,145 +10397,145 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SEMI_SEMI] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LF] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(361), }, [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), + [anon_sym_in] = ACTIONS(389), + [anon_sym_SEMI_SEMI] = ACTIONS(391), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(393), + [anon_sym_LF] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(391), }, [39] = { [sym_do_group] = STATE(212), - [anon_sym_do] = ACTIONS(389), + [anon_sym_do] = ACTIONS(395), [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), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(397), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_LF] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(397), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_LF] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), }, [42] = { - [anon_sym_then] = ACTIONS(395), + [anon_sym_then] = ACTIONS(401), [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), + [sym__concat] = ACTIONS(403), + [anon_sym_in] = ACTIONS(405), + [anon_sym_SEMI_SEMI] = ACTIONS(407), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(409), + [anon_sym_LF] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(407), }, [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), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_0] = ACTIONS(421), + [anon_sym__] = ACTIONS(421), }, [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), + [sym__concat] = ACTIONS(403), + [anon_sym_in] = ACTIONS(423), + [anon_sym_SEMI_SEMI] = ACTIONS(425), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_LF] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), }, [47] = { [sym_subscript] = STATE(231), - [sym_variable_name] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_DOLLAR] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(425), - [anon_sym_DASH] = ACTIONS(427), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_AT] = ACTIONS(427), - [anon_sym_QMARK] = ACTIONS(427), - [anon_sym_0] = ACTIONS(431), - [anon_sym__] = ACTIONS(431), + [sym_variable_name] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(433), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(433), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(435), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(433), + [anon_sym_0] = ACTIONS(437), + [anon_sym__] = ACTIONS(437), }, [48] = { [sym__terminated_statement] = STATE(234), @@ -9438,21 +10635,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -9470,7 +10667,7 @@ 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(277), + [sym_word] = ACTIONS(281), }, [50] = { [sym__terminated_statement] = STATE(240), @@ -9539,23 +10736,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_in] = ACTIONS(423), + [anon_sym_SEMI_SEMI] = ACTIONS(425), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_LF] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), }, [52] = { [sym_compound_statement] = STATE(243), - [anon_sym_LPAREN] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(441), [sym_comment] = ACTIONS(53), }, [53] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_PLUS_EQ] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(443), + [anon_sym_PLUS_EQ] = ACTIONS(443), [sym_comment] = ACTIONS(53), }, [54] = { @@ -9625,7 +10822,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [55] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(439), + [sym_word] = ACTIONS(445), }, [56] = { [sym_subshell] = STATE(71), @@ -9732,27 +10929,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(251), [sym_process_substitution] = STATE(251), [aux_sym_declaration_command_repeat1] = STATE(253), - [sym_variable_name] = ACTIONS(441), + [sym_variable_name] = ACTIONS(447), [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), + [anon_sym_RPAREN] = ACTIONS(163), + [anon_sym_SEMI_SEMI] = ACTIONS(163), + [anon_sym_PIPE_AMP] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [sym__special_characters] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(169), + [sym_raw_string] = ACTIONS(451), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(175), + [anon_sym_BQUOTE] = ACTIONS(177), + [anon_sym_LT_LPAREN] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(179), + [sym_comment] = ACTIONS(53), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), - [sym_word] = ACTIONS(445), + [sym_word] = ACTIONS(453), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LF] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(163), [anon_sym_AMP] = ACTIONS(161), }, [60] = { @@ -9765,156 +10962,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_RPAREN] = ACTIONS(187), + [anon_sym_SEMI_SEMI] = ACTIONS(187), + [anon_sym_PIPE_AMP] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(187), + [anon_sym_PIPE_PIPE] = ACTIONS(187), + [sym__special_characters] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(457), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(205), + [sym_word] = ACTIONS(459), [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_LF] = ACTIONS(205), + [anon_sym_LF] = ACTIONS(187), [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), + [sym__simple_heredoc_body] = ACTIONS(225), + [sym__heredoc_body_beginning] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(225), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(229), + [anon_sym_EQ_EQ] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_AMP_GT] = ACTIONS(229), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(229), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [sym__special_characters] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(229), + [sym_raw_string] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(229), + [anon_sym_LF] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(229), }, [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), + [sym__simple_heredoc_body] = ACTIONS(253), + [sym__heredoc_body_beginning] = ACTIONS(253), + [sym_file_descriptor] = ACTIONS(253), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(255), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_EQ_TILDE] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(255), + [anon_sym_GT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(255), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [anon_sym_LT_LT_LT] = ACTIONS(253), + [sym__special_characters] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym_raw_string] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(253), + [anon_sym_GT_LPAREN] = ACTIONS(253), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(255), }, [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), + [sym__simple_heredoc_body] = ACTIONS(253), + [sym__heredoc_body_beginning] = ACTIONS(253), + [sym_file_descriptor] = ACTIONS(253), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(255), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_EQ_TILDE] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(255), + [anon_sym_GT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(255), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [anon_sym_LT_LT_LT] = ACTIONS(253), + [sym__special_characters] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym_raw_string] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(253), + [anon_sym_GT_LPAREN] = ACTIONS(253), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(255), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_SEMI_SEMI] = ACTIONS(467), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LF] = ACTIONS(467), + [anon_sym_AMP] = ACTIONS(473), }, [65] = { [sym_file_redirect] = STATE(269), @@ -9930,76 +11127,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_SEMI_SEMI] = ACTIONS(305), + [anon_sym_PIPE_AMP] = ACTIONS(305), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_EQ_TILDE] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_AMP_GT] = ACTIONS(479), + [anon_sym_AMP_GT_GT] = ACTIONS(481), + [anon_sym_LT_AMP] = ACTIONS(481), + [anon_sym_GT_AMP] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [sym__special_characters] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(39), [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), + [sym_raw_string] = ACTIONS(487), + [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(489), + [anon_sym_SEMI] = ACTIONS(303), + [anon_sym_LF] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(303), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_SEMI_SEMI] = ACTIONS(467), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LF] = ACTIONS(467), + [anon_sym_AMP] = ACTIONS(473), }, [67] = { - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_PLUS_EQ] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(443), + [anon_sym_PLUS_EQ] = ACTIONS(443), [sym_comment] = ACTIONS(53), }, [68] = { @@ -10090,7 +11287,7 @@ 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(475), + [sym__special_characters] = ACTIONS(491), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), [sym_raw_string] = ACTIONS(105), @@ -10104,27 +11301,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [70] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(493), + [anon_sym_PLUS_EQ] = ACTIONS(493), [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), + [anon_sym_esac] = ACTIONS(495), + [anon_sym_PIPE] = ACTIONS(497), + [anon_sym_RPAREN] = ACTIONS(495), + [anon_sym_SEMI_SEMI] = ACTIONS(495), + [anon_sym_PIPE_AMP] = ACTIONS(495), + [anon_sym_AMP_AMP] = ACTIONS(495), + [anon_sym_PIPE_PIPE] = ACTIONS(495), + [anon_sym_BQUOTE] = ACTIONS(495), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_LF] = ACTIONS(495), + [anon_sym_AMP] = ACTIONS(497), }, [72] = { - [anon_sym_EQ] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(493), + [anon_sym_PLUS_EQ] = ACTIONS(493), [sym_comment] = ACTIONS(53), }, [73] = { @@ -10140,19 +11337,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_BANG] = ACTIONS(499), + [sym__special_characters] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(487), + [sym_raw_string] = ACTIONS(503), [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), + [sym_word] = ACTIONS(505), + [sym_test_operator] = ACTIONS(507), }, [74] = { [sym__expression] = STATE(280), @@ -10183,50 +11380,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [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), + [sym__concat] = ACTIONS(509), [anon_sym_AMP_AMP] = ACTIONS(511), [anon_sym_PIPE_PIPE] = ACTIONS(511), [anon_sym_RBRACK] = ACTIONS(511), @@ -10239,20 +11393,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_test_operator] = ACTIONS(511), }, - [79] = { - [sym_subscript] = STATE(293), - [sym_variable_name] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), + [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(515), + [anon_sym_DOLLAR] = ACTIONS(517), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [77] = { + [sym_string] = STATE(287), + [anon_sym_DQUOTE] = ACTIONS(117), [anon_sym_DOLLAR] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(517), + [sym_raw_string] = ACTIONS(521), + [anon_sym_POUND] = ACTIONS(519), [anon_sym_DASH] = ACTIONS(519), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(521), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(523), [anon_sym_STAR] = ACTIONS(519), [anon_sym_AT] = ACTIONS(519), [anon_sym_QMARK] = ACTIONS(519), - [anon_sym_0] = ACTIONS(523), - [anon_sym__] = ACTIONS(523), + [anon_sym_0] = ACTIONS(525), + [anon_sym__] = ACTIONS(525), + }, + [78] = { + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__concat] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(527), + [anon_sym_PIPE_PIPE] = ACTIONS(527), + [anon_sym_RBRACK] = ACTIONS(527), + [anon_sym_EQ_TILDE] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(527), + [anon_sym_EQ] = ACTIONS(529), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_BANG_EQ] = ACTIONS(527), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(527), + }, + [79] = { + [sym_subscript] = STATE(293), + [sym_variable_name] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_DOLLAR] = ACTIONS(535), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(535), + [anon_sym_AT] = ACTIONS(535), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_0] = ACTIONS(539), + [anon_sym__] = ACTIONS(539), }, [80] = { [sym__terminated_statement] = STATE(296), @@ -10352,21 +11549,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -10384,7 +11581,7 @@ 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(277), + [sym_word] = ACTIONS(281), }, [82] = { [sym__terminated_statement] = STATE(302), @@ -10453,17 +11650,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_RBRACK] = ACTIONS(543), + [anon_sym_EQ_TILDE] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(525), + [sym_test_operator] = ACTIONS(541), }, [84] = { [sym__expression] = STATE(306), @@ -10478,19 +11675,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_BANG] = ACTIONS(499), + [sym__special_characters] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(487), + [sym_raw_string] = ACTIONS(503), [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), + [sym_word] = ACTIONS(505), + [sym_test_operator] = ACTIONS(507), }, [85] = { [sym__expression] = STATE(307), @@ -10521,50 +11718,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [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), + [sym__concat] = ACTIONS(549), [anon_sym_AMP_AMP] = ACTIONS(511), [anon_sym_PIPE_PIPE] = ACTIONS(511), [anon_sym_RBRACK_RBRACK] = ACTIONS(511), @@ -10577,20 +11731,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_test_operator] = ACTIONS(511), }, + [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(551), + [anon_sym_DOLLAR] = ACTIONS(553), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [88] = { + [sym_string] = STATE(314), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(555), + [sym_raw_string] = ACTIONS(557), + [anon_sym_POUND] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(559), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(555), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_0] = ACTIONS(561), + [anon_sym__] = ACTIONS(561), + }, + [89] = { + [aux_sym_concatenation_repeat1] = STATE(309), + [sym__concat] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(527), + [anon_sym_PIPE_PIPE] = ACTIONS(527), + [anon_sym_RBRACK_RBRACK] = ACTIONS(527), + [anon_sym_EQ_TILDE] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(527), + [anon_sym_EQ] = ACTIONS(529), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_BANG_EQ] = ACTIONS(527), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(527), + }, [90] = { [sym_subscript] = STATE(320), - [sym_variable_name] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(551), - [anon_sym_POUND] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(551), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(551), - [anon_sym_0] = ACTIONS(555), - [anon_sym__] = ACTIONS(555), + [sym_variable_name] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(567), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_0] = ACTIONS(571), + [anon_sym__] = ACTIONS(571), }, [91] = { [sym__terminated_statement] = STATE(323), @@ -10690,21 +11887,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -10722,7 +11919,7 @@ 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(277), + [sym_word] = ACTIONS(281), }, [93] = { [sym__terminated_statement] = STATE(329), @@ -10791,116 +11988,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK_RBRACK] = ACTIONS(543), + [anon_sym_EQ_TILDE] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_BANG_EQ] = ACTIONS(573), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(557), + [sym_test_operator] = ACTIONS(573), }, [95] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), [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), + [sym__concat] = ACTIONS(581), + [sym_variable_name] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(583), + [anon_sym_PIPE_AMP] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [sym__special_characters] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(585), + [sym_raw_string] = ACTIONS(583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(583), + [anon_sym_BQUOTE] = ACTIONS(583), + [anon_sym_LT_LPAREN] = ACTIONS(583), + [anon_sym_GT_LPAREN] = ACTIONS(583), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(585), + [sym_word] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(585), }, [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), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(589), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), + [anon_sym_DQUOTE] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(591), + [sym_raw_string] = ACTIONS(593), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [sym_comment] = ACTIONS(243), + [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), }, [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), + [sym__concat] = ACTIONS(581), + [sym_variable_name] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_SEMI_SEMI] = ACTIONS(599), + [anon_sym_PIPE_AMP] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [sym__special_characters] = ACTIONS(599), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(601), + [sym_raw_string] = ACTIONS(599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LT_LPAREN] = ACTIONS(599), + [anon_sym_GT_LPAREN] = ACTIONS(599), + [sym_comment] = ACTIONS(53), + [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), }, [100] = { [sym_subscript] = STATE(345), - [sym_variable_name] = ACTIONS(589), - [anon_sym_BANG] = ACTIONS(591), - [anon_sym_DOLLAR] = ACTIONS(593), - [anon_sym_POUND] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(593), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_AT] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_0] = ACTIONS(597), - [anon_sym__] = ACTIONS(597), + [sym_variable_name] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_DOLLAR] = ACTIONS(607), + [anon_sym_POUND] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(607), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(609), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(607), + [anon_sym_0] = ACTIONS(611), + [anon_sym__] = ACTIONS(611), }, [101] = { [sym__terminated_statement] = STATE(348), @@ -11000,21 +12197,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -11032,7 +12229,7 @@ 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(277), + [sym_word] = ACTIONS(281), }, [103] = { [sym__terminated_statement] = STATE(354), @@ -11101,32 +12298,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_SEMI_SEMI] = ACTIONS(613), + [anon_sym_PIPE_AMP] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [sym__special_characters] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(615), + [sym_raw_string] = ACTIONS(613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(613), + [anon_sym_GT_LPAREN] = ACTIONS(613), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(615), + [sym_word] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(615), }, [105] = { - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), [sym_comment] = ACTIONS(53), }, [106] = { @@ -11141,117 +12338,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_SEMI_SEMI] = ACTIONS(619), + [anon_sym_PIPE_AMP] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [sym__special_characters] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(169), + [sym_raw_string] = ACTIONS(171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(175), + [anon_sym_BQUOTE] = ACTIONS(177), + [anon_sym_LT_LPAREN] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(179), + [sym_comment] = ACTIONS(53), [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), + [sym_word] = ACTIONS(183), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(617), }, [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), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_SEMI_SEMI] = ACTIONS(625), + [anon_sym_PIPE_AMP] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [sym__special_characters] = ACTIONS(625), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [sym_raw_string] = ACTIONS(625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(625), + [anon_sym_LT_LPAREN] = ACTIONS(625), + [anon_sym_GT_LPAREN] = ACTIONS(625), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), + [sym_word] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(623), }, [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), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(629), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(631), + [sym_raw_string] = ACTIONS(633), + [anon_sym_POUND] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(631), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_0] = ACTIONS(637), + [anon_sym__] = ACTIONS(637), }, [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), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(639), + [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(639), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(639), + [sym_word] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(639), }, [111] = { [sym_subscript] = STATE(368), - [sym_variable_name] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(635), - [anon_sym_POUND] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(635), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_AT] = ACTIONS(635), - [anon_sym_QMARK] = ACTIONS(635), - [anon_sym_0] = ACTIONS(639), - [anon_sym__] = ACTIONS(639), + [sym_variable_name] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_POUND] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_AT] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(647), + [anon_sym_0] = ACTIONS(651), + [anon_sym__] = ACTIONS(651), }, [112] = { [sym__terminated_statement] = STATE(371), @@ -11351,21 +12548,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -11383,7 +12580,7 @@ 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(277), + [sym_word] = ACTIONS(281), }, [114] = { [sym__terminated_statement] = STATE(377), @@ -11452,27 +12649,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_SEMI_SEMI] = ACTIONS(655), + [anon_sym_PIPE_AMP] = ACTIONS(655), + [anon_sym_AMP_AMP] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(655), + [sym__special_characters] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(653), + [sym_raw_string] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(655), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LT_LPAREN] = ACTIONS(655), + [anon_sym_GT_LPAREN] = ACTIONS(655), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(653), + [sym_word] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), }, [116] = { [sym_concatenation] = STATE(378), @@ -11483,117 +12680,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_SEMI_SEMI] = ACTIONS(659), + [anon_sym_PIPE_AMP] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(659), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(195), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(205), + [sym_word] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(657), + [anon_sym_LF] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(657), }, [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_file_descriptor] = ACTIONS(661), + [sym__concat] = ACTIONS(663), + [sym_variable_name] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_AMP_GT] = ACTIONS(665), + [anon_sym_AMP_GT_GT] = ACTIONS(661), + [anon_sym_LT_AMP] = ACTIONS(661), + [anon_sym_GT_AMP] = ACTIONS(661), + [sym__special_characters] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(665), + [sym_raw_string] = ACTIONS(661), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(661), + [anon_sym_LT_LPAREN] = ACTIONS(661), + [anon_sym_GT_LPAREN] = ACTIONS(661), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(649), + [sym_word] = ACTIONS(661), }, [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), + [anon_sym_DQUOTE] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(671), + [sym_raw_string] = ACTIONS(673), + [anon_sym_POUND] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(671), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), + [anon_sym_STAR] = ACTIONS(671), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_QMARK] = ACTIONS(671), + [anon_sym_0] = ACTIONS(677), + [anon_sym__] = ACTIONS(677), }, [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_file_descriptor] = ACTIONS(679), + [sym__concat] = ACTIONS(663), + [sym_variable_name] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [sym__special_characters] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(681), + [sym_raw_string] = ACTIONS(679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(679), + [anon_sym_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(679), + [anon_sym_GT_LPAREN] = ACTIONS(679), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(667), + [sym_word] = ACTIONS(679), }, [121] = { [sym_subscript] = STATE(391), - [sym_variable_name] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_POUND] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(677), - [anon_sym_STAR] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_QMARK] = ACTIONS(675), - [anon_sym_0] = ACTIONS(679), - [anon_sym__] = ACTIONS(679), + [sym_variable_name] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(687), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_AT] = ACTIONS(687), + [anon_sym_QMARK] = ACTIONS(687), + [anon_sym_0] = ACTIONS(691), + [anon_sym__] = ACTIONS(691), }, [122] = { [sym__terminated_statement] = STATE(394), @@ -11693,21 +12890,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -11725,7 +12922,7 @@ 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(277), + [sym_word] = ACTIONS(281), }, [124] = { [sym__terminated_statement] = STATE(400), @@ -11794,26 +12991,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(679), + [sym_variable_name] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [sym__special_characters] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(681), + [sym_raw_string] = ACTIONS(679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(679), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(679), + [anon_sym_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(679), + [anon_sym_GT_LPAREN] = ACTIONS(679), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(667), + [sym_word] = ACTIONS(679), }, [126] = { [sym_string] = STATE(401), @@ -11822,133 +13019,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(401), [sym_command_substitution] = STATE(401), [sym_process_substitution] = STATE(401), - [sym__special_characters] = ACTIONS(681), + [sym__special_characters] = ACTIONS(693), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(681), + [sym_raw_string] = ACTIONS(693), [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), + [sym_word] = ACTIONS(693), }, [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), + [sym__simple_heredoc_body] = ACTIONS(695), + [sym__heredoc_body_beginning] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_EQ_TILDE] = ACTIONS(697), + [anon_sym_EQ_EQ] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [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), + [sym__simple_heredoc_body] = ACTIONS(699), + [sym__heredoc_body_beginning] = ACTIONS(699), + [sym_file_descriptor] = ACTIONS(699), + [sym__concat] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [anon_sym_EQ_TILDE] = ACTIONS(701), + [anon_sym_EQ_EQ] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(699), + [anon_sym_LT_AMP] = ACTIONS(699), + [anon_sym_GT_AMP] = ACTIONS(699), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(699), + [anon_sym_LT_LT_LT] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), }, [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), + [anon_sym_DQUOTE] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [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), + [sym__concat] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [sym_comment] = ACTIONS(243), }, [131] = { [sym_subscript] = STATE(412), - [sym_variable_name] = ACTIONS(707), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_DOLLAR] = ACTIONS(711), - [anon_sym_POUND] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(711), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(711), - [anon_sym_QMARK] = ACTIONS(711), - [anon_sym_0] = ACTIONS(715), - [anon_sym__] = ACTIONS(715), + [sym_variable_name] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_POUND] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(723), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(723), + [anon_sym_AT] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_0] = ACTIONS(727), + [anon_sym__] = ACTIONS(727), }, [132] = { [sym__terminated_statement] = STATE(415), @@ -12048,21 +13244,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -12080,155 +13276,152 @@ 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(277), + [sym_word] = ACTIONS(281), }, [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), + [anon_sym_DQUOTE] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(729), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [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), + [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_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), }, [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), + [sym__simple_heredoc_body] = ACTIONS(739), + [sym__heredoc_body_beginning] = ACTIONS(739), + [sym_file_descriptor] = ACTIONS(739), + [sym__concat] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_LT] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [138] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(745), [sym_comment] = ACTIONS(53), }, [139] = { [sym_subscript] = STATE(426), - [sym_variable_name] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), + [sym_variable_name] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_AT] = ACTIONS(737), - [anon_sym_QMARK] = ACTIONS(737), - [anon_sym_0] = ACTIONS(741), - [anon_sym__] = ACTIONS(741), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(751), + [anon_sym_STAR] = ACTIONS(749), + [anon_sym_AT] = ACTIONS(749), + [anon_sym_QMARK] = ACTIONS(749), + [anon_sym_0] = ACTIONS(753), + [anon_sym__] = ACTIONS(753), }, [140] = { [sym_concatenation] = STATE(437), @@ -12239,26 +13432,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(437), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ] = ACTIONS(745), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_COLON_QMARK] = ACTIONS(745), - [anon_sym_COLON_DASH] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(757), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(757), + [anon_sym_COLON_QMARK] = ACTIONS(757), + [anon_sym_COLON_DASH] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [141] = { [sym_concatenation] = STATE(440), @@ -12269,26 +13462,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(440), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(771), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(783), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(785), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(787), + [anon_sym_COLON] = ACTIONS(783), + [anon_sym_COLON_QMARK] = ACTIONS(783), + [anon_sym_COLON_DASH] = ACTIONS(783), + [anon_sym_PERCENT] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [142] = { [sym_concatenation] = STATE(443), @@ -12299,69 +13492,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(443), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(779), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_EQ] = ACTIONS(791), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(791), + [anon_sym_COLON_QMARK] = ACTIONS(791), + [anon_sym_COLON_DASH] = ACTIONS(791), + [anon_sym_PERCENT] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_SEMI_SEMI] = ACTIONS(799), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_AMP] = ACTIONS(801), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_SEMI_SEMI] = ACTIONS(799), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_AMP] = ACTIONS(801), }, [145] = { [sym__terminated_statement] = STATE(273), @@ -12496,7 +13689,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [147] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(791), + [sym_word] = ACTIONS(803), }, [148] = { [sym_subshell] = STATE(71), @@ -12517,8 +13710,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -12605,24 +13798,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SEMI_SEMI] = ACTIONS(163), + [anon_sym_PIPE_AMP] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [sym__special_characters] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(169), + [sym_raw_string] = ACTIONS(171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(175), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(179), + [sym_comment] = ACTIONS(53), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), - [sym_word] = ACTIONS(169), + [sym_word] = ACTIONS(183), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LF] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(163), [anon_sym_AMP] = ACTIONS(161), }, [152] = { @@ -12635,76 +13828,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(187), + [anon_sym_PIPE_AMP] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(187), + [anon_sym_PIPE_PIPE] = ACTIONS(187), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(195), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(187), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(205), + [sym_word] = ACTIONS(207), [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_LF] = ACTIONS(205), + [anon_sym_LF] = ACTIONS(187), [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), + [sym__simple_heredoc_body] = ACTIONS(253), + [sym__heredoc_body_beginning] = ACTIONS(253), + [sym_file_descriptor] = ACTIONS(253), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(255), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(805), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_EQ_TILDE] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(255), + [anon_sym_GT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(255), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [anon_sym_LT_LT_LT] = ACTIONS(253), + [sym__special_characters] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym_raw_string] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(253), + [anon_sym_GT_LPAREN] = ACTIONS(253), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(255), }, [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), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(797), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_AMP] = ACTIONS(815), }, [155] = { [sym_file_redirect] = STATE(461), @@ -12720,70 +13913,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_SEMI_SEMI] = ACTIONS(305), + [anon_sym_PIPE_AMP] = ACTIONS(305), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(823), + [sym__special_characters] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(39), [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), + [sym_raw_string] = ACTIONS(321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(305), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(323), + [anon_sym_SEMI] = ACTIONS(303), + [anon_sym_LF] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(303), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(809), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(785), + [anon_sym_BQUOTE] = ACTIONS(797), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_LF] = ACTIONS(809), + [anon_sym_AMP] = ACTIONS(815), }, [157] = { [sym__terminated_statement] = STATE(273), @@ -12817,21 +14010,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -12849,7 +14042,7 @@ 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(277), + [sym_word] = ACTIONS(281), }, [158] = { [sym_command_name] = STATE(465), @@ -12873,7 +14066,7 @@ 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(329), + [sym__special_characters] = ACTIONS(331), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), [sym_raw_string] = ACTIONS(43), @@ -12886,47 +14079,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_SEMI_SEMI] = ACTIONS(827), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(827), + [anon_sym_AMP] = ACTIONS(829), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_SEMI_SEMI] = ACTIONS(827), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(827), + [anon_sym_AMP] = ACTIONS(829), }, [161] = { [sym__terminated_statement] = STATE(273), @@ -12995,7 +14188,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [162] = { - [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(831), [sym_comment] = ACTIONS(53), }, [163] = { @@ -13063,49 +14256,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [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_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [ts_builtin_sym_end] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_done] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_fi] = ACTIONS(835), + [anon_sym_elif] = ACTIONS(835), + [anon_sym_else] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_word] = ACTIONS(835), }, [165] = { [sym_for_statement] = STATE(473), @@ -13172,37 +14364,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [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), + [anon_sym_esac] = ACTIONS(837), + [anon_sym_PIPE] = ACTIONS(839), + [anon_sym_RPAREN] = ACTIONS(837), + [anon_sym_SEMI_SEMI] = ACTIONS(837), + [anon_sym_PIPE_AMP] = ACTIONS(837), + [anon_sym_AMP_AMP] = ACTIONS(837), + [anon_sym_PIPE_PIPE] = ACTIONS(837), + [anon_sym_BQUOTE] = ACTIONS(837), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(839), + [anon_sym_LF] = ACTIONS(837), + [anon_sym_AMP] = ACTIONS(839), }, [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__heredoc_body_middle] = ACTIONS(841), + [sym__heredoc_body_end] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), [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), + [anon_sym_LT] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(849), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_AMP_GT] = ACTIONS(849), + [anon_sym_AMP_GT_GT] = ACTIONS(851), + [anon_sym_LT_AMP] = ACTIONS(851), + [anon_sym_GT_AMP] = ACTIONS(851), [sym_comment] = ACTIONS(53), }, [169] = { @@ -13213,18 +14405,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(481), [sym_command_substitution] = STATE(481), [sym_process_substitution] = STATE(481), - [sym__special_characters] = ACTIONS(837), - [anon_sym_DQUOTE] = ACTIONS(309), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(855), [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), + [sym_raw_string] = ACTIONS(857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(861), + [anon_sym_BQUOTE] = ACTIONS(863), + [anon_sym_LT_LPAREN] = ACTIONS(865), + [anon_sym_GT_LPAREN] = ACTIONS(865), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(857), + [sym_regex] = ACTIONS(867), }, [170] = { [sym_concatenation] = STATE(485), @@ -13234,20 +14426,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(484), [sym_command_substitution] = STATE(484), [sym_process_substitution] = STATE(484), - [sym__special_characters] = ACTIONS(843), + [sym__special_characters] = ACTIONS(869), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(845), + [sym_raw_string] = ACTIONS(871), [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), + [sym_word] = ACTIONS(871), }, [171] = { - [sym_heredoc_start] = ACTIONS(847), + [sym_heredoc_start] = ACTIONS(873), [sym_comment] = ACTIONS(53), }, [172] = { @@ -13258,107 +14450,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(488), [sym_command_substitution] = STATE(488), [sym_process_substitution] = STATE(488), - [sym__special_characters] = ACTIONS(849), + [sym__special_characters] = ACTIONS(875), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(851), + [sym_raw_string] = ACTIONS(877), [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), + [sym_word] = ACTIONS(877), }, [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(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), + [sym__simple_heredoc_body] = ACTIONS(879), + [sym__heredoc_body_beginning] = ACTIONS(879), + [sym_file_descriptor] = ACTIONS(879), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_SEMI_SEMI] = ACTIONS(879), + [anon_sym_PIPE_AMP] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(879), + [anon_sym_PIPE_PIPE] = ACTIONS(879), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_GT_GT] = ACTIONS(879), + [anon_sym_AMP_GT] = ACTIONS(881), + [anon_sym_AMP_GT_GT] = ACTIONS(879), + [anon_sym_LT_AMP] = ACTIONS(879), + [anon_sym_GT_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(881), + [anon_sym_LT_LT_DASH] = ACTIONS(879), + [anon_sym_LT_LT_LT] = ACTIONS(879), + [sym__special_characters] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(881), + [sym_raw_string] = ACTIONS(879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(879), + [anon_sym_BQUOTE] = ACTIONS(879), + [anon_sym_LT_LPAREN] = ACTIONS(879), + [anon_sym_GT_LPAREN] = ACTIONS(879), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(881), }, [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(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), + [sym__simple_heredoc_body] = ACTIONS(883), + [sym__heredoc_body_beginning] = ACTIONS(883), + [sym_file_descriptor] = ACTIONS(883), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_SEMI_SEMI] = ACTIONS(883), + [anon_sym_PIPE_AMP] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(883), + [anon_sym_PIPE_PIPE] = ACTIONS(883), + [anon_sym_EQ_TILDE] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(883), + [anon_sym_AMP_GT] = ACTIONS(885), + [anon_sym_AMP_GT_GT] = ACTIONS(883), + [anon_sym_LT_AMP] = ACTIONS(883), + [anon_sym_GT_AMP] = ACTIONS(883), + [anon_sym_LT_LT] = ACTIONS(885), + [anon_sym_LT_LT_DASH] = ACTIONS(883), + [anon_sym_LT_LT_LT] = ACTIONS(883), + [sym__special_characters] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(883), + [anon_sym_DOLLAR] = ACTIONS(885), + [sym_raw_string] = ACTIONS(883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(883), + [anon_sym_BQUOTE] = ACTIONS(883), + [anon_sym_LT_LPAREN] = ACTIONS(883), + [anon_sym_GT_LPAREN] = ACTIONS(883), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(883), + [anon_sym_AMP] = 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), + [anon_sym_esac] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(887), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), }, [176] = { [sym_file_redirect] = STATE(491), @@ -13366,28 +14558,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(311), + [anon_sym_LT_AMP] = ACTIONS(311), + [anon_sym_GT_AMP] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(317), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), }, [177] = { [sym_file_redirect] = STATE(492), @@ -13403,40 +14595,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(311), + [anon_sym_LT_AMP] = ACTIONS(311), + [anon_sym_GT_AMP] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(317), + [sym__special_characters] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(39), [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), + [sym_raw_string] = ACTIONS(321), + [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), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), }, [178] = { [sym__terminated_statement] = STATE(178), @@ -13467,43 +14659,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_file_descriptor] = ACTIONS(891), + [sym_variable_name] = ACTIONS(894), + [ts_builtin_sym_end] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(902), + [anon_sym_if] = ACTIONS(905), + [anon_sym_case] = ACTIONS(908), + [anon_sym_function] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(923), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_typeset] = ACTIONS(926), + [anon_sym_export] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_local] = ACTIONS(926), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(932), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(932), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_AMP] = ACTIONS(935), + [sym__special_characters] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(936), + [sym_word] = ACTIONS(962), }, [179] = { [sym_file_redirect] = STATE(492), @@ -13519,185 +14711,184 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(311), + [anon_sym_LT_AMP] = ACTIONS(311), + [anon_sym_GT_AMP] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(317), + [sym__special_characters] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(39), [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), + [sym_raw_string] = ACTIONS(321), + [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), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), }, [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_file_descriptor] = ACTIONS(965), + [sym_variable_name] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(974), + [anon_sym_AMP_GT] = ACTIONS(971), + [anon_sym_AMP_GT_GT] = ACTIONS(974), + [anon_sym_LT_AMP] = ACTIONS(974), + [anon_sym_GT_AMP] = ACTIONS(974), + [sym__special_characters] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(979), + [sym_raw_string] = ACTIONS(977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(977), + [anon_sym_BQUOTE] = ACTIONS(977), + [anon_sym_LT_LPAREN] = ACTIONS(977), + [anon_sym_GT_LPAREN] = ACTIONS(977), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(951), + [sym_word] = ACTIONS(977), }, [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_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(663), + [sym_variable_name] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [sym__special_characters] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(981), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [anon_sym_GT_LPAREN] = ACTIONS(981), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(955), + [sym_word] = ACTIONS(981), }, [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_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(663), + [sym_variable_name] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [sym__special_characters] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(987), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [anon_sym_LT_LPAREN] = ACTIONS(985), + [anon_sym_GT_LPAREN] = ACTIONS(985), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(959), + [sym_word] = ACTIONS(985), }, [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_file_descriptor] = ACTIONS(985), + [sym_variable_name] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [sym__special_characters] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(987), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [anon_sym_LT_LPAREN] = ACTIONS(985), + [anon_sym_GT_LPAREN] = ACTIONS(985), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(959), + [sym_word] = ACTIONS(985), }, [184] = { [aux_sym_concatenation_repeat1] = STATE(497), - [sym__concat] = ACTIONS(963), - [anon_sym_RBRACK] = ACTIONS(965), + [sym__concat] = ACTIONS(989), + [anon_sym_RBRACK] = ACTIONS(991), [sym_comment] = ACTIONS(53), }, [185] = { [aux_sym_concatenation_repeat1] = STATE(497), - [sym__concat] = ACTIONS(967), - [anon_sym_RBRACK] = ACTIONS(969), + [sym__concat] = ACTIONS(993), + [anon_sym_RBRACK] = ACTIONS(995), [sym_comment] = ACTIONS(53), }, [186] = { - [sym__concat] = ACTIONS(971), - [anon_sym_RBRACK] = ACTIONS(969), + [sym__concat] = ACTIONS(997), + [anon_sym_RBRACK] = ACTIONS(995), [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), + [sym_file_descriptor] = ACTIONS(999), + [sym_variable_name] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [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(1001), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_AMP_GT] = ACTIONS(1001), + [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(1001), + [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(53), + [sym_word] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(1001), }, [188] = { [sym_concatenation] = STATE(510), @@ -13708,125 +14899,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RPAREN] = ACTIONS(1003), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(985), + [sym_word] = ACTIONS(1011), }, [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), + [sym_file_descriptor] = ACTIONS(1021), + [sym__concat] = ACTIONS(1023), + [sym_variable_name] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_SEMI_SEMI] = ACTIONS(1021), + [anon_sym_PIPE_AMP] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(1025), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1025), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1025), + [sym_raw_string] = ACTIONS(1021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_BQUOTE] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1021), + [anon_sym_GT_LPAREN] = ACTIONS(1021), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1025), }, [190] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), [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), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1029), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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(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), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(1031), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(1031), + [anon_sym_AT] = ACTIONS(1031), + [anon_sym_QMARK] = ACTIONS(1031), + [anon_sym_0] = ACTIONS(1037), + [anon_sym__] = ACTIONS(1037), }, [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), - [sym_word] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), + [sym_file_descriptor] = ACTIONS(999), + [sym__concat] = ACTIONS(1023), + [sym_variable_name] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [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(1001), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_AMP_GT] = ACTIONS(1001), + [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(1001), + [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(53), + [sym_word] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(1001), }, [193] = { [sym_subscript] = STATE(523), - [sym_variable_name] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1017), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1019), - [anon_sym_STAR] = ACTIONS(1017), - [anon_sym_AT] = ACTIONS(1017), - [anon_sym_QMARK] = ACTIONS(1017), - [anon_sym_0] = ACTIONS(1021), - [anon_sym__] = ACTIONS(1021), + [sym_variable_name] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1043), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_0] = ACTIONS(1047), + [anon_sym__] = ACTIONS(1047), }, [194] = { [sym__terminated_statement] = STATE(526), @@ -13926,21 +15117,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -13958,7 +15149,7 @@ 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(277), + [sym_word] = ACTIONS(281), }, [196] = { [sym__terminated_statement] = STATE(532), @@ -14038,24 +15229,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SEMI_SEMI] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LF] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), }, [198] = { [sym__expression] = STATE(535), @@ -14070,19 +15261,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_BANG] = ACTIONS(499), + [sym__special_characters] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(487), + [sym_raw_string] = ACTIONS(503), [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), + [sym_word] = ACTIONS(505), + [sym_test_operator] = ACTIONS(507), }, [199] = { [sym__expression] = STATE(536), @@ -14096,99 +15287,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - [sym_test_operator] = ACTIONS(1043), + [sym_word] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), }, [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), + [sym__concat] = ACTIONS(1053), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_AMP] = ACTIONS(513), }, [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), + [anon_sym_DQUOTE] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1057), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(1059), + [sym_raw_string] = ACTIONS(1061), + [anon_sym_POUND] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_0] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), }, [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), + [sym__concat] = ACTIONS(1053), + [anon_sym_SEMI_SEMI] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(527), + [anon_sym_PIPE_PIPE] = ACTIONS(527), + [anon_sym_EQ_TILDE] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(527), + [anon_sym_EQ] = ACTIONS(529), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_BANG_EQ] = ACTIONS(527), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(529), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_AMP] = ACTIONS(529), }, [204] = { [sym_subscript] = STATE(549), - [sym_variable_name] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1063), - [anon_sym_POUND] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1063), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_AT] = ACTIONS(1063), - [anon_sym_QMARK] = ACTIONS(1063), - [anon_sym_0] = ACTIONS(1067), - [anon_sym__] = ACTIONS(1067), + [sym_variable_name] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_DOLLAR] = ACTIONS(1071), + [anon_sym_POUND] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_AT] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_0] = ACTIONS(1075), + [anon_sym__] = ACTIONS(1075), }, [205] = { [sym__terminated_statement] = STATE(552), @@ -14288,21 +15479,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -14320,7 +15511,7 @@ 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(277), + [sym_word] = ACTIONS(281), }, [207] = { [sym__terminated_statement] = STATE(558), @@ -14389,49 +15580,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_SEMI_SEMI] = ACTIONS(1077), + [anon_sym_AMP_AMP] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1079), + [anon_sym_EQ_TILDE] = ACTIONS(1081), + [anon_sym_EQ_EQ] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(1079), + [anon_sym_BANG_EQ] = ACTIONS(1079), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_LF] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1085), }, [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_concatenation] = STATE(570), + [sym_string] = STATE(565), + [sym_simple_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [sym_expansion] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [aux_sym_for_statement_repeat1] = STATE(570), + [sym__special_characters] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1093), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1097), + [anon_sym_BQUOTE] = ACTIONS(1099), + [anon_sym_LT_LPAREN] = ACTIONS(1101), + [anon_sym_GT_LPAREN] = ACTIONS(1101), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1079), + [sym_word] = ACTIONS(1093), }, [210] = { - [sym_do_group] = STATE(566), - [anon_sym_do] = ACTIONS(1081), + [sym_do_group] = STATE(572), + [anon_sym_do] = ACTIONS(1103), [sym_comment] = ACTIONS(53), }, [211] = { - [sym__terminated_statement] = STATE(568), + [sym__terminated_statement] = STATE(574), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -14457,13 +15648,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(568), + [aux_sym_program_repeat1] = STATE(574), [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_done] = ACTIONS(1105), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), @@ -14498,47 +15689,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [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(1085), - [anon_sym_LF] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1085), + [sym_file_redirect] = STATE(576), + [sym_heredoc_redirect] = STATE(576), + [sym_heredoc_body] = STATE(575), + [sym_herestring_redirect] = STATE(576), + [aux_sym_while_statement_repeat1] = STATE(576), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(311), + [anon_sym_LT_AMP] = ACTIONS(311), + [anon_sym_GT_AMP] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(317), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1107), }, [213] = { - [anon_sym_do] = ACTIONS(817), - [anon_sym_then] = ACTIONS(817), + [anon_sym_do] = ACTIONS(833), + [anon_sym_then] = ACTIONS(833), [sym_comment] = ACTIONS(53), }, [214] = { - [sym__terminated_statement] = STATE(576), + [sym__terminated_statement] = STATE(582), [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_elif_clause] = STATE(580), + [sym_else_clause] = STATE(581), [sym_case_statement] = STATE(26), [sym_function_definition] = STATE(26), [sym_subshell] = STATE(26), @@ -14560,17 +15751,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(576), - [aux_sym_if_statement_repeat1] = STATE(577), + [aux_sym_program_repeat1] = STATE(582), + [aux_sym_if_statement_repeat1] = STATE(583), [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(1089), - [anon_sym_elif] = ACTIONS(1091), - [anon_sym_else] = ACTIONS(1093), + [anon_sym_fi] = ACTIONS(1111), + [anon_sym_elif] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -14604,238 +15795,138 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_string] = STATE(584), + [sym_simple_expansion] = STATE(584), + [sym_string_expansion] = STATE(584), + [sym_expansion] = STATE(584), + [sym_command_substitution] = STATE(584), + [sym_process_substitution] = STATE(584), + [sym__special_characters] = ACTIONS(1117), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_DOLLAR] = ACTIONS(73), - [sym_raw_string] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1117), [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), + [sym_word] = ACTIONS(1117), }, [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), + [anon_sym_SEMI_SEMI] = ACTIONS(1119), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1121), + [anon_sym_LF] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), }, [217] = { - [anon_sym_in] = ACTIONS(1101), + [anon_sym_in] = ACTIONS(1123), [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), + [aux_sym_concatenation_repeat1] = STATE(587), + [sym__concat] = ACTIONS(403), + [anon_sym_in] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), }, [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), + [sym__concat] = ACTIONS(699), + [anon_sym_in] = ACTIONS(699), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(699), }, [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), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [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), + [anon_sym_DQUOTE] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1127), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), + [sym__concat] = ACTIONS(731), + [anon_sym_in] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [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), + [sym__concat] = ACTIONS(735), + [anon_sym_in] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = ACTIONS(735), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(735), }, [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), + [sym__concat] = ACTIONS(739), + [anon_sym_in] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(739), }, [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), + [anon_sym_SEMI_SEMI] = ACTIONS(1129), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_LF] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), }, [226] = { - [anon_sym_in] = ACTIONS(1111), + [anon_sym_in] = ACTIONS(1133), [sym_comment] = ACTIONS(53), }, [227] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(1135), [sym_comment] = ACTIONS(53), }, [228] = { - [sym_subscript] = STATE(590), - [sym_variable_name] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), + [sym_subscript] = STATE(596), + [sym_variable_name] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(1117), - [anon_sym_QMARK] = ACTIONS(1117), - [anon_sym_0] = ACTIONS(1121), - [anon_sym__] = ACTIONS(1121), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_AT] = ACTIONS(1139), + [anon_sym_QMARK] = ACTIONS(1139), + [anon_sym_0] = ACTIONS(1143), + [anon_sym__] = ACTIONS(1143), }, [229] = { - [sym_concatenation] = STATE(593), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(593), - [anon_sym_RBRACE] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1125), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(1129), - [anon_sym_COLON] = ACTIONS(1125), - [anon_sym_COLON_QMARK] = ACTIONS(1125), - [anon_sym_COLON_DASH] = ACTIONS(1125), - [anon_sym_PERCENT] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [230] = { - [sym_concatenation] = STATE(596), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(596), - [anon_sym_RBRACE] = ACTIONS(1131), - [anon_sym_EQ] = ACTIONS(1133), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [231] = { [sym_concatenation] = STATE(599), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -14844,88 +15935,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(599), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1141), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(1147), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_COLON_QMARK] = ACTIONS(1147), + [anon_sym_COLON_DASH] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [230] = { + [sym_concatenation] = STATE(602), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(602), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_EQ] = ACTIONS(1155), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_COLON] = ACTIONS(1155), + [anon_sym_COLON_QMARK] = ACTIONS(1155), + [anon_sym_COLON_DASH] = ACTIONS(1155), + [anon_sym_PERCENT] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [231] = { + [sym_concatenation] = STATE(605), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(605), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_EQ] = ACTIONS(1163), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1165), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1167), + [anon_sym_COLON] = ACTIONS(1163), + [anon_sym_COLON_QMARK] = ACTIONS(1163), + [anon_sym_COLON_DASH] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_SEMI_SEMI] = ACTIONS(1171), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym_LF] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1173), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_SEMI_SEMI] = ACTIONS(1171), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym_LF] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1173), }, [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_for_statement] = STATE(608), + [sym_c_style_for_statement] = STATE(608), + [sym_while_statement] = STATE(608), + [sym_if_statement] = STATE(608), + [sym_case_statement] = STATE(608), + [sym_function_definition] = STATE(608), + [sym_subshell] = STATE(608), + [sym_pipeline] = STATE(608), + [sym_list] = STATE(608), + [sym_negated_command] = STATE(608), + [sym_test_command] = STATE(608), + [sym_declaration_command] = STATE(608), + [sym_unset_command] = STATE(608), + [sym_command] = STATE(608), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(603), + [sym_variable_assignment] = STATE(609), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -14975,65 +16126,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1175), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(1169), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1175), + [anon_sym_AMP] = ACTIONS(1177), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1175), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1169), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_LF] = ACTIONS(1175), + [anon_sym_AMP] = ACTIONS(1177), }, [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_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(155), - [sym_variable_assignment] = STATE(606), + [sym_variable_assignment] = STATE(612), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -15048,21 +16199,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -15080,69 +16231,69 @@ 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(277), + [sym_word] = ACTIONS(281), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_SEMI_SEMI] = ACTIONS(1181), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1183), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_SEMI_SEMI] = ACTIONS(1181), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LF] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1183), }, [240] = { [sym__terminated_statement] = STATE(273), - [sym_for_statement] = STATE(609), - [sym_c_style_for_statement] = STATE(609), - [sym_while_statement] = STATE(609), - [sym_if_statement] = STATE(609), - [sym_case_statement] = STATE(609), - [sym_function_definition] = STATE(609), - [sym_subshell] = STATE(609), - [sym_pipeline] = STATE(609), - [sym_list] = STATE(609), - [sym_negated_command] = STATE(609), - [sym_test_command] = STATE(609), - [sym_declaration_command] = STATE(609), - [sym_unset_command] = STATE(609), - [sym_command] = STATE(609), + [sym_for_statement] = STATE(615), + [sym_c_style_for_statement] = STATE(615), + [sym_while_statement] = STATE(615), + [sym_if_statement] = STATE(615), + [sym_case_statement] = STATE(615), + [sym_function_definition] = STATE(615), + [sym_subshell] = STATE(615), + [sym_pipeline] = STATE(615), + [sym_list] = STATE(615), + [sym_negated_command] = STATE(615), + [sym_test_command] = STATE(615), + [sym_declaration_command] = STATE(615), + [sym_unset_command] = STATE(615), + [sym_command] = STATE(615), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(610), + [sym_variable_assignment] = STATE(616), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -15192,27 +16343,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [241] = { - [anon_sym_RPAREN] = ACTIONS(1163), + [anon_sym_RPAREN] = ACTIONS(1185), [sym_comment] = ACTIONS(53), }, [242] = { - [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__terminated_statement] = STATE(621), + [sym_for_statement] = STATE(619), + [sym_c_style_for_statement] = STATE(619), + [sym_while_statement] = STATE(619), + [sym_if_statement] = STATE(619), + [sym_case_statement] = STATE(619), + [sym_function_definition] = STATE(619), + [sym_subshell] = STATE(619), + [sym_pipeline] = STATE(619), + [sym_list] = STATE(619), + [sym_negated_command] = STATE(619), + [sym_test_command] = STATE(619), + [sym_declaration_command] = STATE(619), + [sym_unset_command] = STATE(619), + [sym_command] = STATE(619), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(614), + [sym_variable_assignment] = STATE(620), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -15222,7 +16373,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(615), + [aux_sym_program_repeat1] = STATE(621), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -15232,7 +16383,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(1165), + [anon_sym_RBRACE] = ACTIONS(1187), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -15263,304 +16414,304 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [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(1169), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1169), + [sym_file_redirect] = STATE(624), + [sym_file_descriptor] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_SEMI_SEMI] = ACTIONS(1193), + [anon_sym_PIPE_AMP] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1197), + [anon_sym_AMP_GT] = ACTIONS(1195), + [anon_sym_AMP_GT_GT] = ACTIONS(1197), + [anon_sym_LT_AMP] = ACTIONS(1197), + [anon_sym_GT_AMP] = ACTIONS(1197), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1191), }, [244] = { [sym_concatenation] = STATE(187), - [sym_string] = STATE(620), + [sym_string] = STATE(626), [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_simple_expansion] = STATE(626), + [sym_string_expansion] = STATE(626), + [sym_expansion] = STATE(626), + [sym_command_substitution] = STATE(626), + [sym_process_substitution] = STATE(626), + [sym__empty_value] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [sym__special_characters] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(349), + [sym_raw_string] = ACTIONS(1201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LT_LPAREN] = ACTIONS(359), + [anon_sym_GT_LPAREN] = ACTIONS(359), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1177), + [sym_word] = ACTIONS(1201), }, [245] = { - [sym_do_group] = STATE(621), - [anon_sym_do] = ACTIONS(389), + [sym_do_group] = STATE(627), + [anon_sym_do] = ACTIONS(395), [sym_comment] = ACTIONS(53), }, [246] = { - [sym_compound_statement] = STATE(623), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(435), + [sym_compound_statement] = STATE(629), + [anon_sym_LPAREN] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(441), [sym_comment] = ACTIONS(53), }, [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), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_RBRACK] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(525), + [sym_test_operator] = ACTIONS(541), }, [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), + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_BANG_EQ] = ACTIONS(573), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(557), + [sym_test_operator] = ACTIONS(573), }, [249] = { [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_PLUS_EQ] = ACTIONS(1207), [sym_comment] = ACTIONS(53), }, [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(569), - [sym_word] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(569), + [aux_sym_concatenation_repeat1] = STATE(632), + [sym__concat] = ACTIONS(581), + [sym_variable_name] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_SEMI_SEMI] = ACTIONS(583), + [anon_sym_PIPE_AMP] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [sym__special_characters] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(585), + [sym_raw_string] = ACTIONS(583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(583), + [anon_sym_BQUOTE] = ACTIONS(583), + [anon_sym_LT_LPAREN] = ACTIONS(583), + [anon_sym_GT_LPAREN] = ACTIONS(583), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(585), + [sym_word] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(585), }, [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(587), - [sym_word] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(587), + [aux_sym_concatenation_repeat1] = STATE(632), + [sym__concat] = ACTIONS(581), + [sym_variable_name] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_SEMI_SEMI] = ACTIONS(599), + [anon_sym_PIPE_AMP] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [sym__special_characters] = ACTIONS(599), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(601), + [sym_raw_string] = ACTIONS(599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LT_LPAREN] = ACTIONS(599), + [anon_sym_GT_LPAREN] = ACTIONS(599), + [sym_comment] = ACTIONS(53), + [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), }, [252] = { - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_PLUS_EQ] = ACTIONS(1207), [sym_comment] = ACTIONS(53), }, [253] = { - [sym_variable_assignment] = STATE(627), + [sym_variable_assignment] = STATE(633), [sym_subscript] = STATE(252), - [sym_concatenation] = STATE(627), + [sym_concatenation] = STATE(633), [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(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_declaration_command_repeat1] = STATE(633), + [sym_variable_name] = ACTIONS(447), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_SEMI_SEMI] = ACTIONS(619), + [anon_sym_PIPE_AMP] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [sym__special_characters] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(169), + [sym_raw_string] = ACTIONS(451), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(175), + [anon_sym_BQUOTE] = ACTIONS(177), + [anon_sym_LT_LPAREN] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(179), + [sym_comment] = ACTIONS(53), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), - [sym_word] = ACTIONS(445), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_LF] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(603), + [sym_word] = ACTIONS(453), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(617), }, [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(609), - [sym_word] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(609), + [aux_sym_concatenation_repeat1] = STATE(634), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_SEMI_SEMI] = ACTIONS(625), + [anon_sym_PIPE_AMP] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [sym__special_characters] = ACTIONS(625), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [sym_raw_string] = ACTIONS(625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(625), + [anon_sym_LT_LPAREN] = ACTIONS(625), + [anon_sym_GT_LPAREN] = ACTIONS(625), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), + [sym_word] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(623), }, [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(627), - [sym_word] = ACTIONS(627), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_LF] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(627), + [aux_sym_concatenation_repeat1] = STATE(634), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(639), + [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(639), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(639), + [sym_word] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(639), }, [256] = { - [sym_concatenation] = STATE(629), + [sym_concatenation] = STATE(635), [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(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(645), - [anon_sym_LF] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(645), + [aux_sym_unset_command_repeat1] = STATE(635), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(659), + [anon_sym_SEMI_SEMI] = ACTIONS(659), + [anon_sym_PIPE_AMP] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(659), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [sym__special_characters] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(457), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(205), + [sym_word] = ACTIONS(459), + [anon_sym_SEMI] = ACTIONS(657), + [anon_sym_LF] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(657), }, [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(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(685), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LF] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(685), + [aux_sym_concatenation_repeat1] = STATE(636), + [sym__simple_heredoc_body] = ACTIONS(695), + [sym__heredoc_body_beginning] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_EQ_TILDE] = ACTIONS(697), + [anon_sym_EQ_EQ] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [258] = { - [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1209), [sym_comment] = ACTIONS(53), }, [259] = { @@ -15628,75 +16779,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [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(1187), - [anon_sym_LF] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_esac] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_SEMI_SEMI] = ACTIONS(1211), + [anon_sym_PIPE_AMP] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1211), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LF] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), }, [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_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_word] = ACTIONS(835), }, [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_for_statement] = STATE(639), + [sym_c_style_for_statement] = STATE(639), + [sym_while_statement] = STATE(639), + [sym_if_statement] = STATE(639), + [sym_case_statement] = STATE(639), + [sym_function_definition] = STATE(639), + [sym_subshell] = STATE(639), + [sym_pipeline] = STATE(639), + [sym_list] = STATE(639), + [sym_negated_command] = STATE(639), + [sym_test_command] = STATE(639), + [sym_declaration_command] = STATE(639), + [sym_unset_command] = STATE(639), + [sym_command] = STATE(639), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(634), + [sym_variable_assignment] = STATE(640), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -15745,276 +16896,276 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [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), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1217), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), [sym_comment] = ACTIONS(53), }, [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), + [sym_string] = STATE(643), + [sym_simple_expansion] = STATE(643), + [sym_string_expansion] = STATE(643), + [sym_expansion] = STATE(643), + [sym_command_substitution] = STATE(643), + [sym_process_substitution] = STATE(643), + [sym__special_characters] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(855), [anon_sym_DOLLAR] = ACTIONS(41), - [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(1199), - [sym_regex] = ACTIONS(841), + [sym_raw_string] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(861), + [anon_sym_BQUOTE] = ACTIONS(863), + [anon_sym_LT_LPAREN] = ACTIONS(865), + [anon_sym_GT_LPAREN] = ACTIONS(865), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(1223), + [sym_regex] = ACTIONS(867), }, [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), + [sym_string] = STATE(645), + [sym_simple_expansion] = STATE(645), + [sym_string_expansion] = STATE(645), + [sym_expansion] = STATE(645), + [sym_command_substitution] = STATE(645), + [sym_process_substitution] = STATE(645), + [sym__special_characters] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1203), + [sym_raw_string] = ACTIONS(1227), [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(1203), + [sym_word] = ACTIONS(1227), }, [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), + [sym_string] = STATE(647), + [sym_simple_expansion] = STATE(647), + [sym_string_expansion] = STATE(647), + [sym_expansion] = STATE(647), + [sym_command_substitution] = STATE(647), + [sym_process_substitution] = STATE(647), + [sym__special_characters] = ACTIONS(1229), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1207), + [sym_raw_string] = ACTIONS(1231), [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(1207), + [sym_word] = ACTIONS(1231), }, [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(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(855), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), + [sym__simple_heredoc_body] = ACTIONS(879), + [sym__heredoc_body_beginning] = ACTIONS(879), + [sym_file_descriptor] = ACTIONS(879), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(879), + [anon_sym_SEMI_SEMI] = ACTIONS(879), + [anon_sym_PIPE_AMP] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(879), + [anon_sym_PIPE_PIPE] = ACTIONS(879), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_GT_GT] = ACTIONS(879), + [anon_sym_AMP_GT] = ACTIONS(881), + [anon_sym_AMP_GT_GT] = ACTIONS(879), + [anon_sym_LT_AMP] = ACTIONS(879), + [anon_sym_GT_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(881), + [anon_sym_LT_LT_DASH] = ACTIONS(879), + [anon_sym_LT_LT_LT] = ACTIONS(879), + [sym__special_characters] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(881), + [sym_raw_string] = ACTIONS(879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(879), + [anon_sym_BQUOTE] = ACTIONS(879), + [anon_sym_LT_LPAREN] = ACTIONS(879), + [anon_sym_GT_LPAREN] = ACTIONS(879), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(881), }, [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(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(859), - [anon_sym_SEMI] = ACTIONS(859), - [anon_sym_LF] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(859), + [sym__simple_heredoc_body] = ACTIONS(883), + [sym__heredoc_body_beginning] = ACTIONS(883), + [sym_file_descriptor] = ACTIONS(883), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(883), + [anon_sym_SEMI_SEMI] = ACTIONS(883), + [anon_sym_PIPE_AMP] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(883), + [anon_sym_PIPE_PIPE] = ACTIONS(883), + [anon_sym_EQ_TILDE] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(883), + [anon_sym_AMP_GT] = ACTIONS(885), + [anon_sym_AMP_GT_GT] = ACTIONS(883), + [anon_sym_LT_AMP] = ACTIONS(883), + [anon_sym_GT_AMP] = ACTIONS(883), + [anon_sym_LT_LT] = ACTIONS(885), + [anon_sym_LT_LT_DASH] = ACTIONS(883), + [anon_sym_LT_LT_LT] = ACTIONS(883), + [sym__special_characters] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(883), + [anon_sym_DOLLAR] = ACTIONS(885), + [sym_raw_string] = ACTIONS(883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(883), + [anon_sym_BQUOTE] = ACTIONS(883), + [anon_sym_LT_LPAREN] = ACTIONS(883), + [anon_sym_GT_LPAREN] = ACTIONS(883), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(885), }, [269] = { - [sym_file_redirect] = STATE(642), - [sym_heredoc_redirect] = STATE(642), + [sym_file_redirect] = STATE(648), + [sym_heredoc_redirect] = STATE(648), [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(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(861), + [sym_herestring_redirect] = STATE(648), + [aux_sym_while_statement_repeat1] = STATE(648), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_AMP_GT] = ACTIONS(479), + [anon_sym_AMP_GT_GT] = ACTIONS(481), + [anon_sym_LT_AMP] = ACTIONS(481), + [anon_sym_GT_AMP] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), }, [270] = { - [sym_file_redirect] = STATE(643), - [sym_heredoc_redirect] = STATE(643), + [sym_file_redirect] = STATE(649), + [sym_heredoc_redirect] = STATE(649), [sym_heredoc_body] = STATE(490), - [sym_herestring_redirect] = STATE(643), - [sym_concatenation] = STATE(644), + [sym_herestring_redirect] = STATE(649), + [sym_concatenation] = STATE(650), [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), + [aux_sym_while_statement_repeat1] = STATE(649), + [aux_sym_command_repeat2] = STATE(650), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_EQ_TILDE] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_AMP_GT] = ACTIONS(479), + [anon_sym_AMP_GT_GT] = ACTIONS(481), + [anon_sym_LT_AMP] = ACTIONS(481), + [anon_sym_GT_AMP] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [sym__special_characters] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(39), [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(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(861), + [sym_raw_string] = ACTIONS(487), + [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(489), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), }, [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(1211), - [anon_sym_LF] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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(1211), - [anon_sym_LF] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1211), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_LF] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), }, [273] = { [sym__terminated_statement] = STATE(273), @@ -16045,122 +17196,122 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(19), [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_file_descriptor] = ACTIONS(891), + [sym_variable_name] = ACTIONS(894), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(902), + [anon_sym_if] = ACTIONS(905), + [anon_sym_case] = ACTIONS(908), + [anon_sym_function] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(923), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_typeset] = ACTIONS(926), + [anon_sym_export] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_local] = ACTIONS(926), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(932), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(932), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_AMP] = ACTIONS(935), + [sym__special_characters] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(936), + [sym_word] = ACTIONS(962), }, [274] = { - [sym_file_redirect] = STATE(643), - [sym_heredoc_redirect] = STATE(643), + [sym_file_redirect] = STATE(649), + [sym_heredoc_redirect] = STATE(649), [sym_heredoc_body] = STATE(490), - [sym_herestring_redirect] = STATE(643), - [sym_concatenation] = STATE(646), + [sym_herestring_redirect] = STATE(649), + [sym_concatenation] = STATE(652), [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), + [aux_sym_while_statement_repeat1] = STATE(649), + [aux_sym_command_repeat2] = STATE(652), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_EQ_TILDE] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_AMP_GT] = ACTIONS(479), + [anon_sym_AMP_GT_GT] = ACTIONS(481), + [anon_sym_LT_AMP] = ACTIONS(481), + [anon_sym_GT_AMP] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [sym__special_characters] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(39), [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(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(861), + [sym_raw_string] = ACTIONS(487), + [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(489), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), }, [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(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_concatenation] = STATE(653), + [sym_string] = STATE(656), + [sym_array] = STATE(653), + [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__empty_value] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1239), + [sym__special_characters] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), + [anon_sym_BQUOTE] = ACTIONS(221), + [anon_sym_LT_LPAREN] = ACTIONS(223), + [anon_sym_GT_LPAREN] = ACTIONS(223), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1221), + [sym_word] = ACTIONS(1243), }, [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__expression] = STATE(657), + [sym_binary_expression] = STATE(657), + [sym_unary_expression] = STATE(657), + [sym_parenthesized_expression] = STATE(657), + [sym_concatenation] = STATE(657), [sym_string] = STATE(278), [sym_simple_expansion] = STATE(278), [sym_string_expansion] = STATE(278), @@ -16168,38 +17319,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_BANG] = ACTIONS(499), + [sym__special_characters] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(487), + [sym_raw_string] = ACTIONS(503), [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), + [sym_word] = ACTIONS(505), + [sym_test_operator] = ACTIONS(507), }, [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(495), - }, - [278] = { - [aux_sym_concatenation_repeat1] = STATE(652), - [sym__concat] = ACTIONS(533), + [aux_sym_concatenation_repeat1] = STATE(658), + [sym__concat] = ACTIONS(549), [anon_sym_RPAREN] = ACTIONS(511), [anon_sym_AMP_AMP] = ACTIONS(511), [anon_sym_PIPE_PIPE] = ACTIONS(511), @@ -16212,228 +17348,183 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_test_operator] = ACTIONS(511), }, - [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), + [278] = { + [aux_sym_concatenation_repeat1] = STATE(658), + [sym__concat] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(527), + [anon_sym_PIPE_PIPE] = ACTIONS(527), + [anon_sym_EQ_TILDE] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(527), + [anon_sym_EQ] = ACTIONS(529), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_BANG_EQ] = ACTIONS(527), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1225), + [sym_test_operator] = ACTIONS(527), + }, + [279] = { + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1247), }, [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), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_RBRACK] = ACTIONS(1253), + [anon_sym_EQ_TILDE] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(525), + [sym_test_operator] = ACTIONS(541), }, [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), + [sym_string] = STATE(662), + [sym_simple_expansion] = STATE(662), + [sym_string_expansion] = STATE(662), + [sym_expansion] = STATE(662), + [sym_command_substitution] = STATE(662), + [sym_process_substitution] = STATE(662), + [sym__special_characters] = ACTIONS(1255), [anon_sym_DQUOTE] = ACTIONS(117), [anon_sym_DOLLAR] = ACTIONS(119), - [sym_raw_string] = ACTIONS(1233), + [sym_raw_string] = ACTIONS(1255), [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), + [sym_word] = ACTIONS(1255), }, [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), + [aux_sym_concatenation_repeat1] = STATE(663), + [sym__concat] = ACTIONS(509), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_RBRACK] = ACTIONS(695), + [anon_sym_EQ_TILDE] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(683), + [sym_test_operator] = ACTIONS(695), }, [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__concat] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(699), + [anon_sym_EQ_TILDE] = ACTIONS(699), + [anon_sym_EQ_EQ] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(699), + [anon_sym_GT] = ACTIONS(699), + [anon_sym_BANG_EQ] = ACTIONS(699), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(687), + [sym_test_operator] = ACTIONS(699), }, [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(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), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [285] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), [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), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1259), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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__concat] = ACTIONS(731), + [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), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(719), + [sym_test_operator] = ACTIONS(731), }, [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__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), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(723), + [sym_test_operator] = ACTIONS(735), }, [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__concat] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_RBRACK] = ACTIONS(739), + [anon_sym_EQ_TILDE] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(739), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(727), + [sym_test_operator] = ACTIONS(739), }, [289] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(1261), [sym_comment] = ACTIONS(53), }, [290] = { - [sym_subscript] = STATE(664), - [sym_variable_name] = ACTIONS(1241), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), + [sym_subscript] = STATE(670), + [sym_variable_name] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(1243), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_0] = ACTIONS(1247), - [anon_sym__] = ACTIONS(1247), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AT] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_0] = ACTIONS(1269), + [anon_sym__] = ACTIONS(1269), }, [291] = { - [sym_concatenation] = STATE(667), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(667), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1251), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1253), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(1255), - [anon_sym_COLON] = ACTIONS(1251), - [anon_sym_COLON_QMARK] = ACTIONS(1251), - [anon_sym_COLON_DASH] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [292] = { - [sym_concatenation] = STATE(670), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(670), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_EQ] = ACTIONS(1259), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [293] = { [sym_concatenation] = STATE(673), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -16442,88 +17533,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(673), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_EQ] = ACTIONS(1267), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1273), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1277), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_COLON_QMARK] = ACTIONS(1273), + [anon_sym_COLON_DASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [292] = { + [sym_concatenation] = STATE(676), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(676), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_EQ] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1281), + [anon_sym_COLON_QMARK] = ACTIONS(1281), + [anon_sym_COLON_DASH] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [293] = { + [sym_concatenation] = STATE(679), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(679), + [anon_sym_RBRACE] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1289), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1293), + [anon_sym_COLON] = ACTIONS(1289), + [anon_sym_COLON_QMARK] = ACTIONS(1289), + [anon_sym_COLON_DASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1295), + [anon_sym_SEMI_SEMI] = ACTIONS(1297), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_LF] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1299), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1295), + [anon_sym_SEMI_SEMI] = ACTIONS(1297), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_LF] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1299), }, [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_for_statement] = STATE(682), + [sym_c_style_for_statement] = STATE(682), + [sym_while_statement] = STATE(682), + [sym_if_statement] = STATE(682), + [sym_case_statement] = STATE(682), + [sym_function_definition] = STATE(682), + [sym_subshell] = STATE(682), + [sym_pipeline] = STATE(682), + [sym_list] = STATE(682), + [sym_negated_command] = STATE(682), + [sym_test_command] = STATE(682), + [sym_declaration_command] = STATE(682), + [sym_unset_command] = STATE(682), + [sym_command] = STATE(682), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(677), + [sym_variable_assignment] = STATE(683), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -16573,65 +17724,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [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), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1301), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(1295), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_LF] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1301), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_BQUOTE] = ACTIONS(1295), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_LF] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), }, [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_for_statement] = STATE(685), + [sym_c_style_for_statement] = STATE(685), + [sym_while_statement] = STATE(685), + [sym_if_statement] = STATE(685), + [sym_case_statement] = STATE(685), + [sym_function_definition] = STATE(685), + [sym_subshell] = STATE(685), + [sym_pipeline] = STATE(685), + [sym_list] = STATE(685), + [sym_negated_command] = STATE(685), + [sym_test_command] = STATE(685), + [sym_declaration_command] = STATE(685), + [sym_unset_command] = STATE(685), + [sym_command] = STATE(685), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(680), + [sym_variable_assignment] = STATE(686), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -16646,21 +17797,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -16678,69 +17829,69 @@ 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(277), + [sym_word] = ACTIONS(281), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_SEMI_SEMI] = ACTIONS(1307), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_LF] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1309), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_SEMI_SEMI] = ACTIONS(1307), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_LF] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1309), }, [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_for_statement] = STATE(689), + [sym_c_style_for_statement] = STATE(689), + [sym_while_statement] = STATE(689), + [sym_if_statement] = STATE(689), + [sym_case_statement] = STATE(689), + [sym_function_definition] = STATE(689), + [sym_subshell] = STATE(689), + [sym_pipeline] = STATE(689), + [sym_list] = STATE(689), + [sym_negated_command] = STATE(689), + [sym_test_command] = STATE(689), + [sym_declaration_command] = STATE(689), + [sym_unset_command] = STATE(689), + [sym_command] = STATE(689), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(684), + [sym_variable_assignment] = STATE(690), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -16790,11 +17941,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [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__expression] = STATE(691), + [sym_binary_expression] = STATE(691), + [sym_unary_expression] = STATE(691), + [sym_parenthesized_expression] = STATE(691), + [sym_concatenation] = STATE(691), [sym_string] = STATE(78), [sym_simple_expansion] = STATE(78), [sym_string_expansion] = STATE(78), @@ -16817,289 +17968,229 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(133), }, [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(1291), - [anon_sym_LF] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1291), + [sym_file_redirect] = STATE(696), + [sym_heredoc_redirect] = STATE(696), + [sym_herestring_redirect] = STATE(696), + [aux_sym_while_statement_repeat1] = STATE(696), + [sym_file_descriptor] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_SEMI_SEMI] = ACTIONS(1315), + [anon_sym_PIPE_AMP] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1315), + [anon_sym_PIPE_PIPE] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_AMP_GT] = ACTIONS(1317), + [anon_sym_AMP_GT_GT] = ACTIONS(1319), + [anon_sym_LT_AMP] = ACTIONS(1319), + [anon_sym_GT_AMP] = ACTIONS(1319), + [anon_sym_LT_LT] = ACTIONS(1321), + [anon_sym_LT_LT_DASH] = ACTIONS(1323), + [anon_sym_LT_LT_LT] = ACTIONS(1325), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LF] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1313), }, [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__expression] = STATE(691), + [sym_binary_expression] = STATE(691), + [sym_unary_expression] = STATE(691), + [sym_parenthesized_expression] = STATE(691), + [sym_concatenation] = STATE(691), [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_LPAREN] = ACTIONS(1327), [anon_sym_BANG] = ACTIONS(113), - [sym__special_characters] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1305), + [sym__special_characters] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1331), [anon_sym_DOLLAR] = ACTIONS(119), [sym_raw_string] = ACTIONS(131), - [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), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1335), + [anon_sym_BQUOTE] = ACTIONS(1337), + [anon_sym_LT_LPAREN] = ACTIONS(1339), + [anon_sym_GT_LPAREN] = ACTIONS(1339), + [sym_comment] = ACTIONS(243), [sym_word] = ACTIONS(131), [sym_test_operator] = ACTIONS(113), - [sym_regex] = ACTIONS(1315), + [sym_regex] = ACTIONS(1341), }, [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), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1225), + [sym_test_operator] = ACTIONS(1247), }, [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), + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1253), + [anon_sym_EQ_TILDE] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_BANG_EQ] = ACTIONS(573), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(557), + [sym_test_operator] = ACTIONS(573), }, [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), + [sym_string] = STATE(699), + [sym_simple_expansion] = STATE(699), + [sym_string_expansion] = STATE(699), + [sym_expansion] = STATE(699), + [sym_command_substitution] = STATE(699), + [sym_process_substitution] = STATE(699), + [sym__special_characters] = ACTIONS(1345), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(1319), + [sym_raw_string] = ACTIONS(1345), [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(1319), + [sym_word] = ACTIONS(1345), }, [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), + [aux_sym_concatenation_repeat1] = STATE(700), + [sym__concat] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_RBRACK_RBRACK] = ACTIONS(695), + [anon_sym_EQ_TILDE] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(683), + [sym_test_operator] = ACTIONS(695), }, [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__concat] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [anon_sym_RBRACK_RBRACK] = ACTIONS(699), + [anon_sym_EQ_TILDE] = ACTIONS(699), + [anon_sym_EQ_EQ] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(699), + [anon_sym_GT] = ACTIONS(699), + [anon_sym_BANG_EQ] = ACTIONS(699), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(687), + [sym_test_operator] = ACTIONS(699), }, [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(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), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [312] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), [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), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1349), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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__concat] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [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), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(719), + [sym_test_operator] = ACTIONS(731), }, [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__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), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(723), + [sym_test_operator] = ACTIONS(735), }, [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__concat] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_RBRACK_RBRACK] = ACTIONS(739), + [anon_sym_EQ_TILDE] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(739), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(727), + [sym_test_operator] = ACTIONS(739), }, [316] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(1351), [sym_comment] = ACTIONS(53), }, [317] = { - [sym_subscript] = STATE(701), - [sym_variable_name] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), + [sym_subscript] = STATE(707), + [sym_variable_name] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_QMARK] = ACTIONS(1329), - [anon_sym_0] = ACTIONS(1333), - [anon_sym__] = ACTIONS(1333), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_AT] = ACTIONS(1355), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_0] = ACTIONS(1359), + [anon_sym__] = ACTIONS(1359), }, [318] = { - [sym_concatenation] = STATE(704), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(704), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_EQ] = ACTIONS(1337), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1339), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(1341), - [anon_sym_COLON] = ACTIONS(1337), - [anon_sym_COLON_QMARK] = ACTIONS(1337), - [anon_sym_COLON_DASH] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [319] = { - [sym_concatenation] = STATE(707), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(707), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_EQ] = ACTIONS(1345), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [320] = { [sym_concatenation] = STATE(710), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -17108,88 +18199,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(710), - [anon_sym_RBRACE] = ACTIONS(1351), - [anon_sym_EQ] = ACTIONS(1353), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_EQ] = ACTIONS(1363), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1365), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1367), + [anon_sym_COLON] = ACTIONS(1363), + [anon_sym_COLON_QMARK] = ACTIONS(1363), + [anon_sym_COLON_DASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [319] = { + [sym_concatenation] = STATE(713), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(713), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1371), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_COLON_QMARK] = ACTIONS(1371), + [anon_sym_COLON_DASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [320] = { + [sym_concatenation] = STATE(716), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(716), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1379), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_COLON_QMARK] = ACTIONS(1379), + [anon_sym_COLON_DASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_LF] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_SEMI_SEMI] = ACTIONS(1387), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_LF] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_SEMI_SEMI] = ACTIONS(1387), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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(1361), - [anon_sym_LF] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1361), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_LF] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), }, [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_for_statement] = STATE(719), + [sym_c_style_for_statement] = STATE(719), + [sym_while_statement] = STATE(719), + [sym_if_statement] = STATE(719), + [sym_case_statement] = STATE(719), + [sym_function_definition] = STATE(719), + [sym_subshell] = STATE(719), + [sym_pipeline] = STATE(719), + [sym_list] = STATE(719), + [sym_negated_command] = STATE(719), + [sym_test_command] = STATE(719), + [sym_declaration_command] = STATE(719), + [sym_unset_command] = STATE(719), + [sym_command] = STATE(719), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(714), + [sym_variable_assignment] = STATE(720), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -17239,65 +18390,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [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), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1391), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(1385), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_LF] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1393), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1391), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1385), [anon_sym_LT_LPAREN] = ACTIONS(325), [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_LF] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1393), }, [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_for_statement] = STATE(722), + [sym_c_style_for_statement] = STATE(722), + [sym_while_statement] = STATE(722), + [sym_if_statement] = STATE(722), + [sym_case_statement] = STATE(722), + [sym_function_definition] = STATE(722), + [sym_subshell] = STATE(722), + [sym_pipeline] = STATE(722), + [sym_list] = STATE(722), + [sym_negated_command] = STATE(722), + [sym_test_command] = STATE(722), + [sym_declaration_command] = STATE(722), + [sym_unset_command] = STATE(722), + [sym_command] = STATE(722), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(717), + [sym_variable_assignment] = STATE(723), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -17312,21 +18463,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -17344,69 +18495,69 @@ 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(277), + [sym_word] = ACTIONS(281), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1395), + [anon_sym_SEMI_SEMI] = ACTIONS(1397), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_LF] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1399), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1395), + [anon_sym_SEMI_SEMI] = ACTIONS(1397), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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(1371), - [anon_sym_LF] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1371), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_LF] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1399), }, [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_for_statement] = STATE(726), + [sym_c_style_for_statement] = STATE(726), + [sym_while_statement] = STATE(726), + [sym_if_statement] = STATE(726), + [sym_case_statement] = STATE(726), + [sym_function_definition] = STATE(726), + [sym_subshell] = STATE(726), + [sym_pipeline] = STATE(726), + [sym_list] = STATE(726), + [sym_negated_command] = STATE(726), + [sym_test_command] = STATE(726), + [sym_declaration_command] = STATE(726), + [sym_unset_command] = STATE(726), + [sym_command] = STATE(726), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(721), + [sym_variable_assignment] = STATE(727), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -17456,11 +18607,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [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__expression] = STATE(728), + [sym_binary_expression] = STATE(728), + [sym_unary_expression] = STATE(728), + [sym_parenthesized_expression] = STATE(728), + [sym_concatenation] = STATE(728), [sym_string] = STATE(89), [sym_simple_expansion] = STATE(89), [sym_string_expansion] = STATE(89), @@ -17483,306 +18634,246 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(728), + [sym_binary_expression] = STATE(728), + [sym_unary_expression] = STATE(728), + [sym_parenthesized_expression] = STATE(728), + [sym_concatenation] = STATE(728), [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_LPAREN] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(137), - [sym__special_characters] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(1379), + [sym__special_characters] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1405), [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), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1407), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1409), + [anon_sym_BQUOTE] = ACTIONS(1411), + [anon_sym_LT_LPAREN] = ACTIONS(1413), + [anon_sym_GT_LPAREN] = ACTIONS(1413), + [sym_comment] = ACTIONS(243), [sym_word] = ACTIONS(155), [sym_test_operator] = ACTIONS(137), - [sym_regex] = ACTIONS(1389), + [sym_regex] = ACTIONS(1415), }, [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_concatenation] = STATE(730), + [sym_string] = STATE(733), + [sym_array] = STATE(730), + [sym_simple_expansion] = STATE(733), + [sym_string_expansion] = STATE(733), + [sym_expansion] = STATE(733), + [sym_command_substitution] = STATE(733), + [sym_process_substitution] = STATE(733), + [sym__empty_value] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1419), + [sym__special_characters] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(169), + [sym_raw_string] = ACTIONS(1423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(175), + [anon_sym_BQUOTE] = ACTIONS(177), + [anon_sym_LT_LPAREN] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(179), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1397), + [sym_word] = ACTIONS(1423), }, [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_string] = STATE(734), + [sym_simple_expansion] = STATE(734), + [sym_string_expansion] = STATE(734), + [sym_expansion] = STATE(734), + [sym_command_substitution] = STATE(734), + [sym_process_substitution] = STATE(734), + [sym__special_characters] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(169), + [sym_raw_string] = ACTIONS(1425), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(175), + [anon_sym_BQUOTE] = ACTIONS(177), + [anon_sym_LT_LPAREN] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(179), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1407), + [sym_word] = ACTIONS(1425), }, [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), + [aux_sym_concatenation_repeat1] = STATE(735), + [sym__concat] = ACTIONS(581), + [sym_variable_name] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [335] = { - [sym__concat] = ACTIONS(687), - [sym_variable_name] = 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), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), + [sym_word] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), }, [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(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), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [337] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), [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), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_DOLLAR] = ACTIONS(1429), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), - [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), + [sym__concat] = ACTIONS(731), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [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), - [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), + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), }, [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), - [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), + [sym__concat] = ACTIONS(739), + [sym_variable_name] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(741), + [sym_word] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [341] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(1431), [sym_comment] = ACTIONS(53), }, [342] = { - [sym_subscript] = STATE(736), - [sym_variable_name] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), + [sym_subscript] = STATE(742), + [sym_variable_name] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), [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(1437), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_AT] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1435), + [anon_sym_0] = ACTIONS(1439), + [anon_sym__] = ACTIONS(1439), }, [343] = { - [sym_concatenation] = STATE(739), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(739), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_EQ] = ACTIONS(1425), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [344] = { - [sym_concatenation] = STATE(742), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(742), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1433), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [345] = { [sym_concatenation] = STATE(745), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -17791,88 +18882,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(745), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_EQ] = ACTIONS(1441), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1443), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_COLON] = ACTIONS(1443), + [anon_sym_COLON_QMARK] = ACTIONS(1443), + [anon_sym_COLON_DASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [344] = { + [sym_concatenation] = STATE(748), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(748), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_COLON] = ACTIONS(1451), + [anon_sym_COLON_QMARK] = ACTIONS(1451), + [anon_sym_COLON_DASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [345] = { + [sym_concatenation] = STATE(751), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(751), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_COLON] = ACTIONS(1459), + [anon_sym_COLON_QMARK] = ACTIONS(1459), + [anon_sym_COLON_DASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_SEMI_SEMI] = ACTIONS(1467), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LF] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1469), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_SEMI_SEMI] = ACTIONS(1467), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LF] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1469), }, [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_for_statement] = STATE(754), + [sym_c_style_for_statement] = STATE(754), + [sym_while_statement] = STATE(754), + [sym_if_statement] = STATE(754), + [sym_case_statement] = STATE(754), + [sym_function_definition] = STATE(754), + [sym_subshell] = STATE(754), + [sym_pipeline] = STATE(754), + [sym_list] = STATE(754), + [sym_negated_command] = STATE(754), + [sym_test_command] = STATE(754), + [sym_declaration_command] = STATE(754), + [sym_unset_command] = STATE(754), + [sym_command] = STATE(754), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(749), + [sym_variable_assignment] = STATE(755), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -17922,65 +19073,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [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), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_LF] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1471), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(1465), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_LF] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1473), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1471), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1465), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_LF] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1473), }, [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_for_statement] = STATE(757), + [sym_c_style_for_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_case_statement] = STATE(757), + [sym_function_definition] = STATE(757), + [sym_subshell] = STATE(757), + [sym_pipeline] = STATE(757), + [sym_list] = STATE(757), + [sym_negated_command] = STATE(757), + [sym_test_command] = STATE(757), + [sym_declaration_command] = STATE(757), + [sym_unset_command] = STATE(757), + [sym_command] = STATE(757), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(752), + [sym_variable_assignment] = STATE(758), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -17995,21 +19146,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -18027,69 +19178,69 @@ 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(277), + [sym_word] = ACTIONS(281), }, [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), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_LF] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_SEMI_SEMI] = ACTIONS(1477), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_LF] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1479), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_SEMI_SEMI] = ACTIONS(1477), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_LF] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1479), }, [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_for_statement] = STATE(761), + [sym_c_style_for_statement] = STATE(761), + [sym_while_statement] = STATE(761), + [sym_if_statement] = STATE(761), + [sym_case_statement] = STATE(761), + [sym_function_definition] = STATE(761), + [sym_subshell] = STATE(761), + [sym_pipeline] = STATE(761), + [sym_list] = STATE(761), + [sym_negated_command] = STATE(761), + [sym_test_command] = STATE(761), + [sym_declaration_command] = STATE(761), + [sym_unset_command] = STATE(761), + [sym_command] = STATE(761), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(756), + [sym_variable_assignment] = STATE(762), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -18149,273 +19300,213 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_variable_name] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [sym__special_characters] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1494), + [sym_raw_string] = ACTIONS(1497), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1506), + [anon_sym_LT_LPAREN] = ACTIONS(1509), + [anon_sym_GT_LPAREN] = ACTIONS(1509), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1512), + [sym_word] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1484), }, [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_string] = STATE(763), + [sym_simple_expansion] = STATE(763), + [sym_string_expansion] = STATE(763), + [sym_expansion] = STATE(763), + [sym_command_substitution] = STATE(763), + [sym_process_substitution] = STATE(763), + [sym__special_characters] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(1518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1497), + [sym_word] = ACTIONS(1518), }, [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), + [aux_sym_concatenation_repeat1] = STATE(764), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [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), + [sym__concat] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), + [sym_word] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), }, [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), + [anon_sym_DQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [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), + [anon_sym_DQUOTE] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1522), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), + [sym__concat] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [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), + [sym__concat] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), }, [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), + [sym__concat] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(741), + [sym_word] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [364] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(1524), [sym_comment] = ACTIONS(53), }, [365] = { - [sym_subscript] = STATE(765), - [sym_variable_name] = ACTIONS(1513), - [anon_sym_DOLLAR] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), + [sym_subscript] = STATE(771), + [sym_variable_name] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_AT] = ACTIONS(1515), - [anon_sym_QMARK] = ACTIONS(1515), - [anon_sym_0] = ACTIONS(1519), - [anon_sym__] = ACTIONS(1519), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(1528), + [anon_sym_0] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), }, [366] = { - [sym_concatenation] = STATE(768), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(768), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_EQ] = ACTIONS(1523), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_COLON] = ACTIONS(1523), - [anon_sym_COLON_QMARK] = ACTIONS(1523), - [anon_sym_COLON_DASH] = ACTIONS(1523), - [anon_sym_PERCENT] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [367] = { - [sym_concatenation] = STATE(771), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(771), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_EQ] = ACTIONS(1531), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1533), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [368] = { [sym_concatenation] = STATE(774), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -18424,88 +19515,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(774), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_EQ] = ACTIONS(1539), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1541), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1536), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_COLON] = ACTIONS(1536), + [anon_sym_COLON_QMARK] = ACTIONS(1536), + [anon_sym_COLON_DASH] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [367] = { + [sym_concatenation] = STATE(777), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(777), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1544), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_COLON] = ACTIONS(1544), + [anon_sym_COLON_QMARK] = ACTIONS(1544), + [anon_sym_COLON_DASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [368] = { + [sym_concatenation] = STATE(780), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(780), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1552), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_COLON] = ACTIONS(1552), + [anon_sym_COLON_QMARK] = ACTIONS(1552), + [anon_sym_COLON_DASH] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_SEMI_SEMI] = ACTIONS(1560), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_LF] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1562), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_SEMI_SEMI] = ACTIONS(1560), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_LF] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1562), }, [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_for_statement] = STATE(783), + [sym_c_style_for_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_function_definition] = STATE(783), + [sym_subshell] = STATE(783), + [sym_pipeline] = STATE(783), + [sym_list] = STATE(783), + [sym_negated_command] = STATE(783), + [sym_test_command] = STATE(783), + [sym_declaration_command] = STATE(783), + [sym_unset_command] = STATE(783), + [sym_command] = STATE(783), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(778), + [sym_variable_assignment] = STATE(784), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -18555,65 +19706,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [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), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1564), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(1558), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_LF] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1566), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1564), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(1545), + [anon_sym_BQUOTE] = ACTIONS(1558), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_LF] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1566), }, [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_for_statement] = STATE(786), + [sym_c_style_for_statement] = STATE(786), + [sym_while_statement] = STATE(786), + [sym_if_statement] = STATE(786), + [sym_case_statement] = STATE(786), + [sym_function_definition] = STATE(786), + [sym_subshell] = STATE(786), + [sym_pipeline] = STATE(786), + [sym_list] = STATE(786), + [sym_negated_command] = STATE(786), + [sym_test_command] = STATE(786), + [sym_declaration_command] = STATE(786), + [sym_unset_command] = STATE(786), + [sym_command] = STATE(786), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(781), + [sym_variable_assignment] = STATE(787), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -18628,21 +19779,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -18660,69 +19811,69 @@ 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(277), + [sym_word] = ACTIONS(281), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1568), + [anon_sym_SEMI_SEMI] = ACTIONS(1570), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_LF] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1572), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1568), + [anon_sym_SEMI_SEMI] = ACTIONS(1570), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_LF] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1572), }, [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_for_statement] = STATE(790), + [sym_c_style_for_statement] = STATE(790), + [sym_while_statement] = STATE(790), + [sym_if_statement] = STATE(790), + [sym_case_statement] = STATE(790), + [sym_function_definition] = STATE(790), + [sym_subshell] = STATE(790), + [sym_pipeline] = STATE(790), + [sym_list] = STATE(790), + [sym_negated_command] = STATE(790), + [sym_test_command] = STATE(790), + [sym_declaration_command] = STATE(790), + [sym_unset_command] = STATE(790), + [sym_command] = STATE(790), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(785), + [sym_variable_assignment] = STATE(791), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -18780,268 +19931,208 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_SEMI_SEMI] = ACTIONS(1576), + [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [sym__special_characters] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1584), + [sym_raw_string] = ACTIONS(1587), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1590), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1593), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_LT_LPAREN] = ACTIONS(1599), + [anon_sym_GT_LPAREN] = ACTIONS(1599), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1602), + [sym_word] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_LF] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1574), }, [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(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_string] = STATE(792), + [sym_simple_expansion] = STATE(792), + [sym_string_expansion] = STATE(792), + [sym_expansion] = STATE(792), + [sym_command_substitution] = STATE(792), + [sym_process_substitution] = STATE(792), + [sym__special_characters] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(211), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym_raw_string] = ACTIONS(1608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), + [anon_sym_BQUOTE] = ACTIONS(221), + [anon_sym_LT_LPAREN] = ACTIONS(223), + [anon_sym_GT_LPAREN] = ACTIONS(223), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1592), + [sym_word] = ACTIONS(1608), }, [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), + [aux_sym_concatenation_repeat1] = STATE(793), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(663), + [sym_variable_name] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(683), + [sym_word] = ACTIONS(695), }, [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_file_descriptor] = ACTIONS(699), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(699), + [anon_sym_LT_AMP] = ACTIONS(699), + [anon_sym_GT_AMP] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(687), + [sym_word] = ACTIONS(699), }, [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), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [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), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1612), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [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(719), + [sym_word] = ACTIONS(731), }, [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_file_descriptor] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [sym_variable_name] = 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(723), + [sym_word] = ACTIONS(735), }, [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_file_descriptor] = ACTIONS(739), + [sym__concat] = ACTIONS(739), + [sym_variable_name] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(727), + [sym_word] = ACTIONS(739), }, [387] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(1614), [sym_comment] = ACTIONS(53), }, [388] = { - [sym_subscript] = STATE(794), - [sym_variable_name] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), + [sym_subscript] = STATE(800), + [sym_variable_name] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1618), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1602), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_0] = ACTIONS(1606), - [anon_sym__] = ACTIONS(1606), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_0] = ACTIONS(1622), + [anon_sym__] = ACTIONS(1622), }, [389] = { - [sym_concatenation] = STATE(797), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(797), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_EQ] = ACTIONS(1610), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(1614), - [anon_sym_COLON] = ACTIONS(1610), - [anon_sym_COLON_QMARK] = ACTIONS(1610), - [anon_sym_COLON_DASH] = ACTIONS(1610), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [390] = { - [sym_concatenation] = STATE(800), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(800), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_EQ] = ACTIONS(1618), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [391] = { [sym_concatenation] = STATE(803), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -19052,86 +20143,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expansion_repeat1] = STATE(803), [anon_sym_RBRACE] = ACTIONS(1624), [anon_sym_EQ] = ACTIONS(1626), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(1628), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [390] = { + [sym_concatenation] = STATE(806), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(806), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_EQ] = ACTIONS(1634), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_COLON] = ACTIONS(1634), + [anon_sym_COLON_QMARK] = ACTIONS(1634), + [anon_sym_COLON_DASH] = ACTIONS(1634), + [anon_sym_PERCENT] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [391] = { + [sym_concatenation] = STATE(809), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(809), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1642), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1646), + [anon_sym_COLON] = ACTIONS(1642), + [anon_sym_COLON_QMARK] = ACTIONS(1642), + [anon_sym_COLON_DASH] = ACTIONS(1642), + [anon_sym_PERCENT] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_LF] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1652), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_LF] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1652), }, [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_for_statement] = STATE(812), + [sym_c_style_for_statement] = STATE(812), + [sym_while_statement] = STATE(812), + [sym_if_statement] = STATE(812), + [sym_case_statement] = STATE(812), + [sym_function_definition] = STATE(812), + [sym_subshell] = STATE(812), + [sym_pipeline] = STATE(812), + [sym_list] = STATE(812), + [sym_negated_command] = STATE(812), + [sym_test_command] = STATE(812), + [sym_declaration_command] = STATE(812), + [sym_unset_command] = STATE(812), + [sym_command] = STATE(812), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(807), + [sym_variable_assignment] = STATE(813), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -19181,65 +20332,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1654), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(1648), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_LF] = ACTIONS(1654), + [anon_sym_AMP] = ACTIONS(1656), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1654), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(1632), + [anon_sym_BQUOTE] = ACTIONS(1648), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_LF] = ACTIONS(1654), + [anon_sym_AMP] = ACTIONS(1656), }, [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_for_statement] = STATE(815), + [sym_c_style_for_statement] = STATE(815), + [sym_while_statement] = STATE(815), + [sym_if_statement] = STATE(815), + [sym_case_statement] = STATE(815), + [sym_function_definition] = STATE(815), + [sym_subshell] = STATE(815), + [sym_pipeline] = STATE(815), + [sym_list] = STATE(815), + [sym_negated_command] = STATE(815), + [sym_test_command] = STATE(815), + [sym_declaration_command] = STATE(815), + [sym_unset_command] = STATE(815), + [sym_command] = STATE(815), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(810), + [sym_variable_assignment] = STATE(816), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -19254,21 +20405,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -19286,69 +20437,69 @@ 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(277), + [sym_word] = ACTIONS(281), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_SEMI_SEMI] = ACTIONS(1660), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LF] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_SEMI_SEMI] = ACTIONS(1660), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LF] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), }, [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_for_statement] = STATE(819), + [sym_c_style_for_statement] = STATE(819), + [sym_while_statement] = STATE(819), + [sym_if_statement] = STATE(819), + [sym_case_statement] = STATE(819), + [sym_function_definition] = STATE(819), + [sym_subshell] = STATE(819), + [sym_pipeline] = STATE(819), + [sym_list] = STATE(819), + [sym_negated_command] = STATE(819), + [sym_test_command] = STATE(819), + [sym_declaration_command] = STATE(819), + [sym_unset_command] = STATE(819), + [sym_command] = STATE(819), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(814), + [sym_variable_assignment] = STATE(820), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -19398,239 +20549,177 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__simple_heredoc_body] = ACTIONS(1664), + [sym__heredoc_body_beginning] = ACTIONS(1664), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1666), + [anon_sym_EQ_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [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), + [sym__simple_heredoc_body] = ACTIONS(1664), + [sym__heredoc_body_beginning] = ACTIONS(1664), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1666), + [anon_sym_EQ_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [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), + [sym__simple_heredoc_body] = ACTIONS(1671), + [sym__heredoc_body_beginning] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1671), + [sym__concat] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1673), + [anon_sym_EQ_EQ] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1673), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1673), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), }, [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), + [sym__concat] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [sym__string_content] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [sym_comment] = ACTIONS(243), }, [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), + [sym__concat] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1677), + [sym__string_content] = ACTIONS(1679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1677), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1677), + [anon_sym_BQUOTE] = ACTIONS(1677), + [sym_comment] = ACTIONS(243), }, [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), + [sym__concat] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym__string_content] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_comment] = ACTIONS(243), }, [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), + [anon_sym_DQUOTE] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1677), + [sym__string_content] = ACTIONS(1679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1677), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1677), + [anon_sym_BQUOTE] = ACTIONS(1677), + [sym_comment] = ACTIONS(243), }, [408] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(1681), [sym_comment] = ACTIONS(53), }, [409] = { - [sym_subscript] = STATE(820), - [sym_variable_name] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), + [sym_subscript] = STATE(826), + [sym_variable_name] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_AT] = ACTIONS(1669), - [anon_sym_QMARK] = ACTIONS(1669), - [anon_sym_0] = ACTIONS(1673), - [anon_sym__] = ACTIONS(1673), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_AT] = ACTIONS(1685), + [anon_sym_QMARK] = ACTIONS(1685), + [anon_sym_0] = ACTIONS(1689), + [anon_sym__] = ACTIONS(1689), }, [410] = { - [sym_concatenation] = STATE(823), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(823), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_EQ] = ACTIONS(1677), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_COLON] = ACTIONS(1677), - [anon_sym_COLON_QMARK] = ACTIONS(1677), - [anon_sym_COLON_DASH] = ACTIONS(1677), - [anon_sym_PERCENT] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [411] = { - [sym_concatenation] = STATE(826), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(826), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_EQ] = ACTIONS(1685), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [412] = { [sym_concatenation] = STATE(829), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -19641,86 +20730,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expansion_repeat1] = STATE(829), [anon_sym_RBRACE] = ACTIONS(1691), [anon_sym_EQ] = ACTIONS(1693), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [411] = { + [sym_concatenation] = STATE(832), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(832), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_EQ] = ACTIONS(1701), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1701), + [anon_sym_COLON_QMARK] = ACTIONS(1701), + [anon_sym_COLON_DASH] = ACTIONS(1701), + [anon_sym_PERCENT] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [412] = { + [sym_concatenation] = STATE(835), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(835), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_EQ] = ACTIONS(1709), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1709), + [anon_sym_COLON_QMARK] = ACTIONS(1709), + [anon_sym_COLON_DASH] = ACTIONS(1709), + [anon_sym_PERCENT] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1715), + [anon_sym_SEMI_SEMI] = ACTIONS(1717), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1719), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1715), + [anon_sym_SEMI_SEMI] = ACTIONS(1717), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1719), }, [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_for_statement] = STATE(838), + [sym_c_style_for_statement] = STATE(838), + [sym_while_statement] = STATE(838), + [sym_if_statement] = STATE(838), + [sym_case_statement] = STATE(838), + [sym_function_definition] = STATE(838), + [sym_subshell] = STATE(838), + [sym_pipeline] = STATE(838), + [sym_list] = STATE(838), + [sym_negated_command] = STATE(838), + [sym_test_command] = STATE(838), + [sym_declaration_command] = STATE(838), + [sym_unset_command] = STATE(838), + [sym_command] = STATE(838), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(833), + [sym_variable_assignment] = STATE(839), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -19770,65 +20919,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1721), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(1715), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1721), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(1699), + [anon_sym_BQUOTE] = ACTIONS(1715), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), }, [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_for_statement] = STATE(841), + [sym_c_style_for_statement] = STATE(841), + [sym_while_statement] = STATE(841), + [sym_if_statement] = STATE(841), + [sym_case_statement] = STATE(841), + [sym_function_definition] = STATE(841), + [sym_subshell] = STATE(841), + [sym_pipeline] = STATE(841), + [sym_list] = STATE(841), + [sym_negated_command] = STATE(841), + [sym_test_command] = STATE(841), + [sym_declaration_command] = STATE(841), + [sym_unset_command] = STATE(841), + [sym_command] = STATE(841), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(836), + [sym_variable_assignment] = STATE(842), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -19843,21 +20992,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -19875,264 +21024,212 @@ 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(277), + [sym_word] = ACTIONS(281), }, [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), + [anon_sym_DQUOTE] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [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), + [anon_sym_DQUOTE] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1727), + [sym__string_content] = ACTIONS(1730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1736), + [anon_sym_BQUOTE] = ACTIONS(1739), + [sym_comment] = ACTIONS(243), }, [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_concatenation] = STATE(847), [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__special_characters] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1744), + [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(1738), + [sym_word] = ACTIONS(1744), + }, + [422] = { + [sym_concatenation] = STATE(857), + [sym_string] = STATE(852), + [sym_simple_expansion] = STATE(852), + [sym_string_expansion] = STATE(852), + [sym_expansion] = STATE(852), + [sym_command_substitution] = STATE(852), + [sym_process_substitution] = STATE(852), + [anon_sym_RBRACE] = ACTIONS(1746), + [sym__special_characters] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1754), }, [423] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(1764), [sym_comment] = ACTIONS(53), }, [424] = { - [sym_concatenation] = STATE(855), + [sym_concatenation] = STATE(861), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(855), - [anon_sym_RBRACE] = ACTIONS(1750), - [anon_sym_EQ] = ACTIONS(1752), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_COLON] = ACTIONS(1752), - [anon_sym_COLON_QMARK] = ACTIONS(1752), - [anon_sym_COLON_DASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(861), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1768), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_COLON] = ACTIONS(1768), + [anon_sym_COLON_QMARK] = ACTIONS(1768), + [anon_sym_COLON_DASH] = ACTIONS(1768), + [anon_sym_PERCENT] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [425] = { - [sym_concatenation] = STATE(858), + [sym_concatenation] = STATE(864), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(858), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_EQ] = ACTIONS(1760), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_COLON] = ACTIONS(1760), - [anon_sym_COLON_QMARK] = ACTIONS(1760), - [anon_sym_COLON_DASH] = ACTIONS(1760), - [anon_sym_PERCENT] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(864), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1776), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_COLON] = ACTIONS(1776), + [anon_sym_COLON_QMARK] = ACTIONS(1776), + [anon_sym_COLON_DASH] = ACTIONS(1776), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [426] = { - [sym_concatenation] = STATE(860), + [sym_concatenation] = STATE(866), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(860), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1766), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1766), - [anon_sym_COLON_QMARK] = ACTIONS(1766), - [anon_sym_COLON_DASH] = ACTIONS(1766), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(866), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_EQ] = ACTIONS(1782), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(1786), + [anon_sym_COLON] = ACTIONS(1782), + [anon_sym_COLON_QMARK] = ACTIONS(1782), + [anon_sym_COLON_DASH] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [427] = { - [sym__simple_heredoc_body] = ACTIONS(1772), - [sym__heredoc_body_beginning] = ACTIONS(1772), - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_EQ_TILDE] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1774), - [anon_sym_AMP_GT] = ACTIONS(1774), - [anon_sym_AMP_GT_GT] = ACTIONS(1774), - [anon_sym_LT_AMP] = ACTIONS(1774), - [anon_sym_GT_AMP] = ACTIONS(1774), - [anon_sym_LT_LT] = ACTIONS(1774), - [anon_sym_LT_LT_DASH] = ACTIONS(1774), - [anon_sym_LT_LT_LT] = ACTIONS(1774), - [sym__special_characters] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1774), - [anon_sym_GT_LPAREN] = ACTIONS(1774), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1774), + [sym__simple_heredoc_body] = ACTIONS(1788), + [sym__heredoc_body_beginning] = ACTIONS(1788), + [sym_file_descriptor] = ACTIONS(1788), + [sym__concat] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [anon_sym_EQ_TILDE] = ACTIONS(1790), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_GT_GT] = ACTIONS(1788), + [anon_sym_AMP_GT] = ACTIONS(1790), + [anon_sym_AMP_GT_GT] = ACTIONS(1788), + [anon_sym_LT_AMP] = ACTIONS(1788), + [anon_sym_GT_AMP] = ACTIONS(1788), + [anon_sym_LT_LT] = ACTIONS(1790), + [anon_sym_LT_LT_DASH] = ACTIONS(1788), + [anon_sym_LT_LT_LT] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), }, [428] = { - [aux_sym_concatenation_repeat1] = STATE(862), - [sym__concat] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1780), - [sym__special_characters] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1780), - [sym_raw_string] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(1780), - [anon_sym_COLON_QMARK] = ACTIONS(1780), - [anon_sym_COLON_DASH] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1778), - [anon_sym_BQUOTE] = ACTIONS(1778), - [anon_sym_LT_LPAREN] = ACTIONS(1778), - [anon_sym_GT_LPAREN] = ACTIONS(1778), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1780), - }, - [429] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(865), - [anon_sym_DQUOTE] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(1784), - [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), - }, - [430] = { - [sym_string] = STATE(867), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(1786), - [sym_raw_string] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_AT] = ACTIONS(1786), - [anon_sym_QMARK] = ACTIONS(1786), - [anon_sym_0] = ACTIONS(1792), - [anon_sym__] = ACTIONS(1792), - }, - [431] = { - [aux_sym_concatenation_repeat1] = STATE(862), - [sym__concat] = ACTIONS(1776), + [aux_sym_concatenation_repeat1] = STATE(868), + [sym__concat] = ACTIONS(1792), [anon_sym_RBRACE] = ACTIONS(1794), [anon_sym_EQ] = ACTIONS(1796), [sym__special_characters] = ACTIONS(1796), @@ -20150,161 +21247,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_LT_LPAREN] = ACTIONS(1794), [anon_sym_GT_LPAREN] = ACTIONS(1794), - [sym_comment] = ACTIONS(179), + [sym_comment] = ACTIONS(243), [sym_word] = ACTIONS(1796), }, - [432] = { - [sym_subscript] = STATE(873), - [sym_variable_name] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1800), + [429] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(871), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1800), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [430] = { + [sym_string] = STATE(873), + [anon_sym_DQUOTE] = ACTIONS(761), [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(1800), + [sym_raw_string] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(1802), [anon_sym_DASH] = ACTIONS(1802), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1804), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1806), [anon_sym_STAR] = ACTIONS(1802), [anon_sym_AT] = ACTIONS(1802), [anon_sym_QMARK] = ACTIONS(1802), - [anon_sym_0] = ACTIONS(1806), - [anon_sym__] = ACTIONS(1806), + [anon_sym_0] = ACTIONS(1808), + [anon_sym__] = ACTIONS(1808), + }, + [431] = { + [aux_sym_concatenation_repeat1] = STATE(868), + [sym__concat] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(1812), + [anon_sym_DQUOTE] = ACTIONS(1810), + [anon_sym_DOLLAR] = ACTIONS(1812), + [sym_raw_string] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), + [anon_sym_BQUOTE] = ACTIONS(1810), + [anon_sym_LT_LPAREN] = ACTIONS(1810), + [anon_sym_GT_LPAREN] = ACTIONS(1810), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(1812), + }, + [432] = { + [sym_subscript] = STATE(879), + [sym_variable_name] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1818), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1818), + [anon_sym_QMARK] = ACTIONS(1818), + [anon_sym_0] = ACTIONS(1822), + [anon_sym__] = ACTIONS(1822), }, [433] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(1808), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(1824), }, [434] = { - [sym__terminated_statement] = STATE(877), - [sym_for_statement] = STATE(875), - [sym_c_style_for_statement] = STATE(875), - [sym_while_statement] = STATE(875), - [sym_if_statement] = STATE(875), - [sym_case_statement] = STATE(875), - [sym_function_definition] = STATE(875), - [sym_subshell] = STATE(875), - [sym_pipeline] = STATE(875), - [sym_list] = STATE(875), - [sym_negated_command] = STATE(875), - [sym_test_command] = STATE(875), - [sym_declaration_command] = STATE(875), - [sym_unset_command] = STATE(875), - [sym_command] = STATE(875), - [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(876), - [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(877), - [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), - }, - [435] = { - [sym__terminated_statement] = STATE(880), - [sym_for_statement] = STATE(878), - [sym_c_style_for_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_function_definition] = STATE(878), - [sym_subshell] = STATE(878), - [sym_pipeline] = STATE(878), - [sym_list] = STATE(878), - [sym_negated_command] = STATE(878), - [sym_test_command] = STATE(878), - [sym_declaration_command] = STATE(878), - [sym_unset_command] = STATE(878), - [sym_command] = STATE(878), - [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(879), - [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(880), - [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), - }, - [436] = { [sym__terminated_statement] = STATE(883), [sym_for_statement] = STATE(881), [sym_c_style_for_statement] = STATE(881), @@ -20370,421 +21386,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [437] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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), + [435] = { + [sym__terminated_statement] = STATE(886), + [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(155), - [sym_variable_assignment] = STATE(896), + [sym_variable_assignment] = STATE(885), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -20794,25 +21413,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), + [aux_sym_program_repeat1] = STATE(886), [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_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -20830,1264 +21450,26 @@ 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(277), + [sym_word] = ACTIONS(281), }, - [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_BANG] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1898), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_AT] = ACTIONS(1898), - [anon_sym_QMARK] = ACTIONS(1898), - [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_BANG] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2023), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_AT] = ACTIONS(2023), - [anon_sym_QMARK] = ACTIONS(2023), - [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), + [436] = { + [sym__terminated_statement] = STATE(889), + [sym_for_statement] = STATE(887), + [sym_c_style_for_statement] = STATE(887), + [sym_while_statement] = STATE(887), + [sym_if_statement] = STATE(887), + [sym_case_statement] = STATE(887), + [sym_function_definition] = STATE(887), + [sym_subshell] = STATE(887), + [sym_pipeline] = STATE(887), + [sym_list] = STATE(887), + [sym_negated_command] = STATE(887), + [sym_test_command] = STATE(887), + [sym_declaration_command] = STATE(887), + [sym_unset_command] = STATE(887), + [sym_command] = STATE(887), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(945), + [sym_variable_assignment] = STATE(888), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -22097,7 +21479,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(62), [sym_command_substitution] = STATE(62), [sym_process_substitution] = STATE(62), - [aux_sym_program_repeat1] = STATE(946), + [aux_sym_program_repeat1] = STATE(889), [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), @@ -22136,24 +21518,418 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [437] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [438] = { + [sym__simple_heredoc_body] = ACTIONS(1832), + [sym__heredoc_body_beginning] = ACTIONS(1832), + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [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(1834), + [anon_sym_EQ_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1834), + [anon_sym_AMP_GT_GT] = ACTIONS(1832), + [anon_sym_LT_AMP] = ACTIONS(1832), + [anon_sym_GT_AMP] = ACTIONS(1832), + [anon_sym_LT_LT] = ACTIONS(1834), + [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(1834), + [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(53), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [439] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(1836), + }, + [440] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [441] = { + [sym__simple_heredoc_body] = ACTIONS(1840), + [sym__heredoc_body_beginning] = ACTIONS(1840), + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_EQ_TILDE] = ACTIONS(1842), + [anon_sym_EQ_EQ] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1840), + [anon_sym_LT_AMP] = ACTIONS(1840), + [anon_sym_GT_AMP] = ACTIONS(1840), + [anon_sym_LT_LT] = ACTIONS(1842), + [anon_sym_LT_LT_DASH] = ACTIONS(1840), + [anon_sym_LT_LT_LT] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [442] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(1844), + }, + [443] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [444] = { + [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_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [445] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(1850), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [446] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1850), + [anon_sym_SEMI_SEMI] = ACTIONS(1852), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_LF] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1854), + }, + [447] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1850), + [anon_sym_SEMI_SEMI] = ACTIONS(1852), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_LF] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1854), + }, + [448] = { + [sym_do_group] = STATE(897), + [anon_sym_do] = ACTIONS(395), + [sym_comment] = ACTIONS(53), + }, + [449] = { + [sym_compound_statement] = STATE(899), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + }, + [450] = { + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_RBRACK] = ACTIONS(1858), + [anon_sym_EQ_TILDE] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(541), + }, + [451] = { + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1858), + [anon_sym_EQ_TILDE] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(577), + [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), + }, + [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(617), + [anon_sym_SEMI_SEMI] = ACTIONS(619), + [anon_sym_PIPE_AMP] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [sym__special_characters] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(169), + [sym_raw_string] = ACTIONS(171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(175), + [anon_sym_BQUOTE] = ACTIONS(619), + [anon_sym_LT_LPAREN] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(179), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(181), + [sym_word] = ACTIONS(183), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(617), + }, + [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(657), + [anon_sym_SEMI_SEMI] = ACTIONS(659), + [anon_sym_PIPE_AMP] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(659), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(195), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(659), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(205), + [sym_word] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(657), + [anon_sym_LF] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(657), + }, + [454] = { + [anon_sym_RPAREN] = ACTIONS(1860), + [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(948), + [sym_variable_assignment] = STATE(902), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -22163,26 +21939,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -22200,9 +21975,1243 @@ 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(277), + [sym_word] = ACTIONS(281), }, - [509] = { + [456] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(1850), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [457] = { + [sym_for_statement] = STATE(903), + [sym_c_style_for_statement] = STATE(903), + [sym_while_statement] = STATE(903), + [sym_if_statement] = STATE(903), + [sym_case_statement] = STATE(903), + [sym_function_definition] = STATE(903), + [sym_subshell] = STATE(903), + [sym_pipeline] = STATE(903), + [sym_list] = STATE(903), + [sym_negated_command] = STATE(903), + [sym_test_command] = STATE(903), + [sym_declaration_command] = STATE(903), + [sym_unset_command] = STATE(903), + [sym_command] = STATE(903), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(904), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [458] = { + [anon_sym_LT] = ACTIONS(1862), + [anon_sym_GT] = ACTIONS(1862), + [anon_sym_GT_GT] = ACTIONS(1864), + [anon_sym_AMP_GT] = ACTIONS(1862), + [anon_sym_AMP_GT_GT] = ACTIONS(1864), + [anon_sym_LT_AMP] = ACTIONS(1864), + [anon_sym_GT_AMP] = ACTIONS(1864), + [sym_comment] = ACTIONS(53), + }, + [459] = { + [sym_concatenation] = STATE(485), + [sym_string] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_string_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [sym__special_characters] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1868), + [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(1868), + }, + [460] = { + [sym_concatenation] = STATE(489), + [sym_string] = STATE(909), + [sym_simple_expansion] = STATE(909), + [sym_string_expansion] = STATE(909), + [sym_expansion] = STATE(909), + [sym_command_substitution] = STATE(909), + [sym_process_substitution] = STATE(909), + [sym__special_characters] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1872), + [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(1872), + }, + [461] = { + [sym_file_redirect] = STATE(910), + [sym_heredoc_redirect] = STATE(910), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(910), + [aux_sym_while_statement_repeat1] = STATE(910), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(887), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), + }, + [462] = { + [sym_file_redirect] = STATE(911), + [sym_heredoc_redirect] = STATE(911), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(911), + [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(911), + [aux_sym_command_repeat2] = STATE(493), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(823), + [sym__special_characters] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(323), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), + }, + [463] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(1850), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_LF] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1876), + }, + [464] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(1850), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_LF] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1876), + }, + [465] = { + [sym_file_redirect] = STATE(911), + [sym_heredoc_redirect] = STATE(911), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(911), + [sym_concatenation] = STATE(913), + [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(911), + [aux_sym_command_repeat2] = STATE(913), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(823), + [sym__special_characters] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(323), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), + }, + [466] = { + [sym__simple_heredoc_body] = ACTIONS(1878), + [sym__heredoc_body_beginning] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1878), + [sym__concat] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_EQ_TILDE] = ACTIONS(1880), + [anon_sym_EQ_EQ] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1880), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + }, + [467] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [468] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1886), + }, + [469] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1886), + }, + [470] = { + [sym_compound_statement] = STATE(916), + [anon_sym_LBRACE] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + }, + [471] = { + [anon_sym_esac] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_BQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1890), + }, + [472] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1890), + }, + [473] = { + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1894), + }, + [474] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1894), + }, + [475] = { + [anon_sym_esac] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1896), + [anon_sym_SEMI_SEMI] = ACTIONS(1896), + [anon_sym_PIPE_AMP] = ACTIONS(1896), + [anon_sym_AMP_AMP] = ACTIONS(1896), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_BQUOTE] = ACTIONS(1896), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1898), + }, + [476] = { + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1902), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_AT] = ACTIONS(1900), + [anon_sym_QMARK] = ACTIONS(1900), + [anon_sym_0] = ACTIONS(1904), + [anon_sym__] = ACTIONS(1904), + }, + [477] = { + [sym_subscript] = STATE(923), + [sym_variable_name] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_DOLLAR] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1910), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(1910), + [anon_sym_0] = ACTIONS(1914), + [anon_sym__] = ACTIONS(1914), + }, + [478] = { + [sym_simple_expansion] = STATE(925), + [sym_expansion] = STATE(925), + [aux_sym_heredoc_body_repeat1] = STATE(925), + [sym__heredoc_body_middle] = ACTIONS(1916), + [sym__heredoc_body_end] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [sym_comment] = ACTIONS(53), + }, + [479] = { + [sym_concatenation] = STATE(928), + [sym_string] = STATE(927), + [sym_simple_expansion] = STATE(927), + [sym_string_expansion] = STATE(927), + [sym_expansion] = STATE(927), + [sym_command_substitution] = STATE(927), + [sym_process_substitution] = STATE(927), + [sym__special_characters] = ACTIONS(1920), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(1922), + [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(1922), + }, + [480] = { + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1926), + [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(1926), + [anon_sym_EQ_EQ] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [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(1926), + [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(53), + [sym_word] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), + }, + [481] = { + [aux_sym_concatenation_repeat1] = STATE(127), + [sym__simple_heredoc_body] = ACTIONS(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1928), + [anon_sym_PIPE_AMP] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [anon_sym_EQ_TILDE] = ACTIONS(1930), + [anon_sym_EQ_EQ] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1928), + [anon_sym_LT_LT_LT] = ACTIONS(1928), + [sym__special_characters] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1928), + [anon_sym_DOLLAR] = ACTIONS(1930), + [sym_raw_string] = ACTIONS(1928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), + [anon_sym_BQUOTE] = ACTIONS(1928), + [anon_sym_LT_LPAREN] = ACTIONS(1928), + [anon_sym_GT_LPAREN] = ACTIONS(1928), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [482] = { + [sym__simple_heredoc_body] = ACTIONS(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_RPAREN] = ACTIONS(1928), + [anon_sym_SEMI_SEMI] = ACTIONS(1928), + [anon_sym_PIPE_AMP] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [anon_sym_EQ_TILDE] = ACTIONS(1930), + [anon_sym_EQ_EQ] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1928), + [anon_sym_LT_LT_LT] = ACTIONS(1928), + [sym__special_characters] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1928), + [anon_sym_DOLLAR] = ACTIONS(1930), + [sym_raw_string] = ACTIONS(1928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), + [anon_sym_BQUOTE] = ACTIONS(1928), + [anon_sym_LT_LPAREN] = ACTIONS(1928), + [anon_sym_GT_LPAREN] = ACTIONS(1928), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [483] = { + [aux_sym_concatenation_repeat1] = STATE(929), + [sym__simple_heredoc_body] = ACTIONS(661), + [sym__heredoc_body_beginning] = ACTIONS(661), + [sym_file_descriptor] = ACTIONS(661), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_AMP_GT] = ACTIONS(665), + [anon_sym_AMP_GT_GT] = ACTIONS(661), + [anon_sym_LT_AMP] = ACTIONS(661), + [anon_sym_GT_AMP] = ACTIONS(661), + [anon_sym_LT_LT] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(661), + [anon_sym_LT_LT_LT] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [484] = { + [aux_sym_concatenation_repeat1] = STATE(929), + [sym__simple_heredoc_body] = ACTIONS(679), + [sym__heredoc_body_beginning] = ACTIONS(679), + [sym_file_descriptor] = ACTIONS(679), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_LT_LT_DASH] = ACTIONS(679), + [anon_sym_LT_LT_LT] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [485] = { + [sym__simple_heredoc_body] = ACTIONS(679), + [sym__heredoc_body_beginning] = ACTIONS(679), + [sym_file_descriptor] = ACTIONS(679), + [anon_sym_esac] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_LT_LT_DASH] = ACTIONS(679), + [anon_sym_LT_LT_LT] = ACTIONS(679), + [anon_sym_BQUOTE] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [486] = { + [sym__simple_heredoc_body] = ACTIONS(1932), + [sym__heredoc_body_beginning] = ACTIONS(1932), + [sym_file_descriptor] = ACTIONS(1932), + [anon_sym_esac] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1934), + [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(1934), + [anon_sym_GT] = ACTIONS(1934), + [anon_sym_GT_GT] = ACTIONS(1932), + [anon_sym_AMP_GT] = ACTIONS(1934), + [anon_sym_AMP_GT_GT] = ACTIONS(1932), + [anon_sym_LT_AMP] = ACTIONS(1932), + [anon_sym_GT_AMP] = ACTIONS(1932), + [anon_sym_LT_LT] = ACTIONS(1934), + [anon_sym_LT_LT_DASH] = ACTIONS(1932), + [anon_sym_LT_LT_LT] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1932), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_LF] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1934), + }, + [487] = { + [aux_sym_concatenation_repeat1] = STATE(929), + [sym__simple_heredoc_body] = ACTIONS(1936), + [sym__heredoc_body_beginning] = ACTIONS(1936), + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1936), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1936), + [anon_sym_LT_AMP] = ACTIONS(1936), + [anon_sym_GT_AMP] = ACTIONS(1936), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1936), + [anon_sym_LT_LT_LT] = ACTIONS(1936), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [488] = { + [aux_sym_concatenation_repeat1] = STATE(929), + [sym__simple_heredoc_body] = ACTIONS(1940), + [sym__heredoc_body_beginning] = ACTIONS(1940), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), + }, + [489] = { + [sym__simple_heredoc_body] = ACTIONS(1940), + [sym__heredoc_body_beginning] = ACTIONS(1940), + [sym_file_descriptor] = ACTIONS(1940), + [anon_sym_esac] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), + }, + [490] = { + [anon_sym_esac] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), + [anon_sym_PIPE_AMP] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_BQUOTE] = ACTIONS(1944), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1946), + }, + [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(1948), + [sym__heredoc_body_beginning] = ACTIONS(1948), + [sym_file_descriptor] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), + [anon_sym_PIPE_AMP] = ACTIONS(1948), + [anon_sym_AMP_AMP] = ACTIONS(1948), + [anon_sym_PIPE_PIPE] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1958), + [anon_sym_AMP_GT] = ACTIONS(1955), + [anon_sym_AMP_GT_GT] = ACTIONS(1958), + [anon_sym_LT_AMP] = ACTIONS(1958), + [anon_sym_GT_AMP] = ACTIONS(1958), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1967), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1953), + }, + [492] = { + [sym_file_redirect] = STATE(491), + [sym_heredoc_redirect] = STATE(491), + [sym_heredoc_body] = STATE(930), + [sym_herestring_redirect] = STATE(491), + [aux_sym_while_statement_repeat1] = STATE(491), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), + [anon_sym_PIPE_AMP] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(311), + [anon_sym_LT_AMP] = ACTIONS(311), + [anon_sym_GT_AMP] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(317), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1946), + }, + [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(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1928), + [anon_sym_PIPE_AMP] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [anon_sym_EQ_TILDE] = ACTIONS(1970), + [anon_sym_EQ_EQ] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1928), + [anon_sym_LT_LT_LT] = ACTIONS(1928), + [sym__special_characters] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_DOLLAR] = ACTIONS(1979), + [sym_raw_string] = ACTIONS(1982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), + [anon_sym_BQUOTE] = ACTIONS(1991), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [494] = { + [sym_file_redirect] = STATE(931), + [sym_heredoc_redirect] = STATE(931), + [sym_heredoc_body] = STATE(930), + [sym_herestring_redirect] = STATE(931), + [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(931), + [aux_sym_command_repeat2] = STATE(493), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), + [anon_sym_PIPE_AMP] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(311), + [anon_sym_LT_AMP] = ACTIONS(311), + [anon_sym_GT_AMP] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(317), + [sym__special_characters] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(321), + [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), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1946), + }, + [495] = { + [sym_string] = STATE(662), + [sym_simple_expansion] = STATE(662), + [sym_string_expansion] = STATE(662), + [sym_expansion] = STATE(662), + [sym_command_substitution] = STATE(662), + [sym_process_substitution] = STATE(662), + [anon_sym_RBRACK] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1255), + [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(1255), + }, + [496] = { + [sym__concat] = ACTIONS(2004), + [anon_sym_EQ] = ACTIONS(2006), + [anon_sym_PLUS_EQ] = ACTIONS(2006), + [sym_comment] = ACTIONS(53), + }, + [497] = { + [aux_sym_concatenation_repeat1] = STATE(934), + [sym__concat] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + }, + [498] = { + [sym_string] = STATE(662), + [sym_simple_expansion] = STATE(662), + [sym_string_expansion] = STATE(662), + [sym_expansion] = STATE(662), + [sym_command_substitution] = STATE(662), + [sym_process_substitution] = STATE(662), + [anon_sym_RBRACK] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1255), + [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(1255), + }, + [499] = { + [sym__concat] = ACTIONS(2010), + [anon_sym_EQ] = ACTIONS(2012), + [anon_sym_PLUS_EQ] = ACTIONS(2012), + [sym_comment] = ACTIONS(53), + }, + [500] = { + [anon_sym_RBRACK] = ACTIONS(2008), + [sym_comment] = ACTIONS(53), + }, + [501] = { + [sym_file_descriptor] = ACTIONS(2014), + [sym_variable_name] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_RPAREN] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2014), + [anon_sym_PIPE_AMP] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2016), + [anon_sym_GT] = ACTIONS(2016), + [anon_sym_GT_GT] = ACTIONS(2014), + [anon_sym_AMP_GT] = ACTIONS(2016), + [anon_sym_AMP_GT_GT] = ACTIONS(2014), + [anon_sym_LT_AMP] = ACTIONS(2014), + [anon_sym_GT_AMP] = ACTIONS(2014), + [sym__special_characters] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [sym_raw_string] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2014), + [anon_sym_BQUOTE] = ACTIONS(2014), + [anon_sym_LT_LPAREN] = ACTIONS(2014), + [anon_sym_GT_LPAREN] = ACTIONS(2014), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_LF] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2016), + }, + [502] = { + [aux_sym_concatenation_repeat1] = STATE(938), + [sym__concat] = ACTIONS(2018), + [anon_sym_RPAREN] = ACTIONS(2020), + [sym__special_characters] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2022), + [sym_raw_string] = ACTIONS(2020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), + [anon_sym_BQUOTE] = ACTIONS(2020), + [anon_sym_LT_LPAREN] = ACTIONS(2020), + [anon_sym_GT_LPAREN] = ACTIONS(2020), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2020), + }, + [503] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(941), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2026), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [504] = { + [sym_string] = STATE(943), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2028), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_AT] = ACTIONS(2028), + [anon_sym_QMARK] = ACTIONS(2028), + [anon_sym_0] = ACTIONS(2034), + [anon_sym__] = ACTIONS(2034), + }, + [505] = { + [aux_sym_concatenation_repeat1] = STATE(938), + [sym__concat] = ACTIONS(2018), + [anon_sym_RPAREN] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2038), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2036), + }, + [506] = { + [sym_subscript] = STATE(949), + [sym_variable_name] = ACTIONS(2040), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_DOLLAR] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2044), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2046), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_AT] = ACTIONS(2044), + [anon_sym_QMARK] = ACTIONS(2044), + [anon_sym_0] = ACTIONS(2048), + [anon_sym__] = ACTIONS(2048), + }, + [507] = { [sym__terminated_statement] = STATE(952), [sym_for_statement] = STATE(950), [sym_c_style_for_statement] = STATE(950), @@ -22268,317 +23277,385 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, + [508] = { + [sym__terminated_statement] = STATE(955), + [sym_for_statement] = STATE(953), + [sym_c_style_for_statement] = STATE(953), + [sym_while_statement] = STATE(953), + [sym_if_statement] = STATE(953), + [sym_case_statement] = STATE(953), + [sym_function_definition] = STATE(953), + [sym_subshell] = STATE(953), + [sym_pipeline] = STATE(953), + [sym_list] = STATE(953), + [sym_negated_command] = STATE(953), + [sym_test_command] = STATE(953), + [sym_declaration_command] = STATE(953), + [sym_unset_command] = STATE(953), + [sym_command] = STATE(953), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(954), + [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(955), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [509] = { + [sym__terminated_statement] = STATE(958), + [sym_for_statement] = STATE(956), + [sym_c_style_for_statement] = STATE(956), + [sym_while_statement] = STATE(956), + [sym_if_statement] = STATE(956), + [sym_case_statement] = STATE(956), + [sym_function_definition] = STATE(956), + [sym_subshell] = STATE(956), + [sym_pipeline] = STATE(956), + [sym_list] = STATE(956), + [sym_negated_command] = STATE(956), + [sym_test_command] = STATE(956), + [sym_declaration_command] = STATE(956), + [sym_unset_command] = STATE(956), + [sym_command] = STATE(956), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(957), + [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(958), + [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_concatenation] = STATE(960), [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), + [aux_sym_for_statement_repeat1] = STATE(960), + [anon_sym_RPAREN] = ACTIONS(2050), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(985), + [sym_word] = ACTIONS(1011), }, [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_string] = STATE(961), + [sym_simple_expansion] = STATE(961), + [sym_string_expansion] = STATE(961), + [sym_expansion] = STATE(961), + [sym_command_substitution] = STATE(961), + [sym_process_substitution] = STATE(961), + [sym__special_characters] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_DOLLAR] = ACTIONS(349), + [sym_raw_string] = ACTIONS(2052), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LT_LPAREN] = ACTIONS(359), + [anon_sym_GT_LPAREN] = ACTIONS(359), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2031), + [sym_word] = ACTIONS(2052), }, [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), + [aux_sym_concatenation_repeat1] = STATE(962), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(1023), + [sym_variable_name] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [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), + [sym_file_descriptor] = ACTIONS(699), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(699), + [anon_sym_LT_AMP] = ACTIONS(699), + [anon_sym_GT_AMP] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), }, [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), + [anon_sym_DQUOTE] = ACTIONS(2054), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [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), + [anon_sym_DQUOTE] = ACTIONS(2054), + [anon_sym_DOLLAR] = ACTIONS(2056), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [sym_variable_name] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = 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(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [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), + [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_SEMI_SEMI] = 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(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), }, [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), + [sym_file_descriptor] = ACTIONS(739), + [sym__concat] = ACTIONS(739), + [sym_variable_name] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [519] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(2058), [sym_comment] = ACTIONS(53), }, [520] = { - [sym_subscript] = STATE(963), - [sym_variable_name] = ACTIONS(2039), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), + [sym_subscript] = STATE(969), + [sym_variable_name] = ACTIONS(2060), + [anon_sym_DOLLAR] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2043), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_AT] = ACTIONS(2041), - [anon_sym_QMARK] = ACTIONS(2041), - [anon_sym_0] = ACTIONS(2045), - [anon_sym__] = ACTIONS(2045), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2062), + [anon_sym_QMARK] = ACTIONS(2062), + [anon_sym_0] = ACTIONS(2066), + [anon_sym__] = ACTIONS(2066), }, [521] = { - [sym_concatenation] = STATE(966), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(966), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_EQ] = ACTIONS(2049), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2053), - [anon_sym_COLON] = ACTIONS(2049), - [anon_sym_COLON_QMARK] = ACTIONS(2049), - [anon_sym_COLON_DASH] = ACTIONS(2049), - [anon_sym_PERCENT] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [522] = { - [sym_concatenation] = STATE(969), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(969), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_EQ] = ACTIONS(2057), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [523] = { [sym_concatenation] = STATE(972), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -22587,88 +23664,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(972), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_EQ] = ACTIONS(2065), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_EQ] = ACTIONS(2070), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2072), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2074), + [anon_sym_COLON] = ACTIONS(2070), + [anon_sym_COLON_QMARK] = ACTIONS(2070), + [anon_sym_COLON_DASH] = ACTIONS(2070), + [anon_sym_PERCENT] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [522] = { + [sym_concatenation] = STATE(975), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(975), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(2078), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2082), + [anon_sym_COLON] = ACTIONS(2078), + [anon_sym_COLON_QMARK] = ACTIONS(2078), + [anon_sym_COLON_DASH] = ACTIONS(2078), + [anon_sym_PERCENT] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [523] = { + [sym_concatenation] = STATE(978), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(978), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_EQ] = ACTIONS(2086), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2090), + [anon_sym_COLON] = ACTIONS(2086), + [anon_sym_COLON_QMARK] = ACTIONS(2086), + [anon_sym_COLON_DASH] = ACTIONS(2086), + [anon_sym_PERCENT] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_SEMI_SEMI] = ACTIONS(2094), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_LF] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2096), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_SEMI_SEMI] = ACTIONS(2094), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_LF] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2096), }, [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_for_statement] = STATE(981), + [sym_c_style_for_statement] = STATE(981), + [sym_while_statement] = STATE(981), + [sym_if_statement] = STATE(981), + [sym_case_statement] = STATE(981), + [sym_function_definition] = STATE(981), + [sym_subshell] = STATE(981), + [sym_pipeline] = STATE(981), + [sym_list] = STATE(981), + [sym_negated_command] = STATE(981), + [sym_test_command] = STATE(981), + [sym_declaration_command] = STATE(981), + [sym_unset_command] = STATE(981), + [sym_command] = STATE(981), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(976), + [sym_variable_assignment] = STATE(982), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -22718,65 +23855,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2098), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(2092), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_LF] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2100), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2098), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(2071), + [anon_sym_BQUOTE] = ACTIONS(2092), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_LF] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2100), }, [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_for_statement] = STATE(984), + [sym_c_style_for_statement] = STATE(984), + [sym_while_statement] = STATE(984), + [sym_if_statement] = STATE(984), + [sym_case_statement] = STATE(984), + [sym_function_definition] = STATE(984), + [sym_subshell] = STATE(984), + [sym_pipeline] = STATE(984), + [sym_list] = STATE(984), + [sym_negated_command] = STATE(984), + [sym_test_command] = STATE(984), + [sym_declaration_command] = STATE(984), + [sym_unset_command] = STATE(984), + [sym_command] = STATE(984), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(979), + [sym_variable_assignment] = STATE(985), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -22791,21 +23928,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -22823,69 +23960,69 @@ 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(277), + [sym_word] = ACTIONS(281), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_SEMI_SEMI] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_LF] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2106), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_SEMI_SEMI] = ACTIONS(2104), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_LF] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2106), }, [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_for_statement] = STATE(988), + [sym_c_style_for_statement] = STATE(988), + [sym_while_statement] = STATE(988), + [sym_if_statement] = STATE(988), + [sym_case_statement] = STATE(988), + [sym_function_definition] = STATE(988), + [sym_subshell] = STATE(988), + [sym_pipeline] = STATE(988), + [sym_list] = STATE(988), + [sym_negated_command] = STATE(988), + [sym_test_command] = STATE(988), + [sym_declaration_command] = STATE(988), + [sym_unset_command] = STATE(988), + [sym_command] = STATE(988), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(983), + [sym_variable_assignment] = STATE(989), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -22935,301 +24072,241 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(1001), + [sym_binary_expression] = STATE(1001), + [sym_unary_expression] = STATE(1001), + [sym_parenthesized_expression] = STATE(1001), + [sym_concatenation] = STATE(1001), + [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), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2112), + [sym__special_characters] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_DOLLAR] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), + [anon_sym_BQUOTE] = ACTIONS(2126), + [anon_sym_LT_LPAREN] = ACTIONS(2128), + [anon_sym_GT_LPAREN] = ACTIONS(2128), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2109), - [sym_test_operator] = ACTIONS(2111), + [sym_word] = ACTIONS(2130), + [sym_test_operator] = ACTIONS(2132), }, [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), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1079), + [anon_sym_EQ_TILDE] = ACTIONS(1081), + [anon_sym_EQ_EQ] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(1079), + [anon_sym_BANG_EQ] = ACTIONS(1079), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_LF] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2136), }, [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), + [anon_sym_RPAREN] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1225), + [sym_test_operator] = ACTIONS(1247), }, [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), + [anon_sym_SEMI_SEMI] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1079), + [anon_sym_EQ_TILDE] = ACTIONS(1081), + [anon_sym_EQ_EQ] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(1079), + [anon_sym_BANG_EQ] = ACTIONS(1079), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_LF] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(2140), }, [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_string] = STATE(1004), + [sym_simple_expansion] = STATE(1004), + [sym_string_expansion] = STATE(1004), + [sym_expansion] = STATE(1004), + [sym_command_substitution] = STATE(1004), + [sym_process_substitution] = STATE(1004), + [sym__special_characters] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(2142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2121), + [sym_word] = ACTIONS(2142), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1005), + [sym__concat] = ACTIONS(1053), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_EQ_TILDE] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(695), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [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), + [sym__concat] = ACTIONS(699), + [anon_sym_esac] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [anon_sym_EQ_TILDE] = ACTIONS(699), + [anon_sym_EQ_EQ] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(699), + [anon_sym_GT] = ACTIONS(699), + [anon_sym_BANG_EQ] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), }, [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), + [anon_sym_DQUOTE] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [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), + [anon_sym_DQUOTE] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), + [sym__concat] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = 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(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), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [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), + [sym__concat] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = 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(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), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), }, [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), + [sym__concat] = ACTIONS(739), + [anon_sym_esac] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_EQ_TILDE] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [545] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(2148), [sym_comment] = ACTIONS(53), }, [546] = { - [sym_subscript] = STATE(1006), - [sym_variable_name] = ACTIONS(2129), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2131), + [sym_subscript] = STATE(1012), + [sym_variable_name] = ACTIONS(2150), + [anon_sym_DOLLAR] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2131), - [anon_sym_QMARK] = ACTIONS(2131), - [anon_sym_0] = ACTIONS(2135), - [anon_sym__] = ACTIONS(2135), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2152), + [anon_sym_QMARK] = ACTIONS(2152), + [anon_sym_0] = ACTIONS(2156), + [anon_sym__] = ACTIONS(2156), }, [547] = { - [sym_concatenation] = STATE(1009), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1009), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_EQ] = ACTIONS(2139), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2141), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2143), - [anon_sym_COLON] = ACTIONS(2139), - [anon_sym_COLON_QMARK] = ACTIONS(2139), - [anon_sym_COLON_DASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [548] = { - [sym_concatenation] = STATE(1012), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1012), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_EQ] = ACTIONS(2147), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [549] = { [sym_concatenation] = STATE(1015), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -23238,88 +24315,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1015), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_EQ] = ACTIONS(2155), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_EQ] = ACTIONS(2160), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2164), + [anon_sym_COLON] = ACTIONS(2160), + [anon_sym_COLON_QMARK] = ACTIONS(2160), + [anon_sym_COLON_DASH] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [548] = { + [sym_concatenation] = STATE(1018), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1018), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_EQ] = ACTIONS(2168), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2170), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_COLON] = ACTIONS(2168), + [anon_sym_COLON_QMARK] = ACTIONS(2168), + [anon_sym_COLON_DASH] = ACTIONS(2168), + [anon_sym_PERCENT] = ACTIONS(2168), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [549] = { + [sym_concatenation] = STATE(1021), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1021), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_EQ] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2180), + [anon_sym_COLON] = ACTIONS(2176), + [anon_sym_COLON_QMARK] = ACTIONS(2176), + [anon_sym_COLON_DASH] = ACTIONS(2176), + [anon_sym_PERCENT] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2182), + [anon_sym_SEMI_SEMI] = ACTIONS(2184), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_LF] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2182), + [anon_sym_SEMI_SEMI] = ACTIONS(2184), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_LF] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), }, [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_for_statement] = STATE(1024), + [sym_c_style_for_statement] = STATE(1024), + [sym_while_statement] = STATE(1024), + [sym_if_statement] = STATE(1024), + [sym_case_statement] = STATE(1024), + [sym_function_definition] = STATE(1024), + [sym_subshell] = STATE(1024), + [sym_pipeline] = STATE(1024), + [sym_list] = STATE(1024), + [sym_negated_command] = STATE(1024), + [sym_test_command] = STATE(1024), + [sym_declaration_command] = STATE(1024), + [sym_unset_command] = STATE(1024), + [sym_command] = STATE(1024), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1019), + [sym_variable_assignment] = STATE(1025), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -23369,65 +24506,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2188), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(2182), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2188), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(2161), + [anon_sym_BQUOTE] = ACTIONS(2182), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_LF] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2190), }, [555] = { [sym__terminated_statement] = STATE(273), - [sym_for_statement] = STATE(1021), - [sym_c_style_for_statement] = STATE(1021), - [sym_while_statement] = STATE(1021), - [sym_if_statement] = STATE(1021), - [sym_case_statement] = STATE(1021), - [sym_function_definition] = STATE(1021), - [sym_subshell] = STATE(1021), - [sym_pipeline] = STATE(1021), - [sym_list] = STATE(1021), - [sym_negated_command] = STATE(1021), - [sym_test_command] = STATE(1021), - [sym_declaration_command] = STATE(1021), - [sym_unset_command] = STATE(1021), - [sym_command] = STATE(1021), + [sym_for_statement] = STATE(1027), + [sym_c_style_for_statement] = STATE(1027), + [sym_while_statement] = STATE(1027), + [sym_if_statement] = STATE(1027), + [sym_case_statement] = STATE(1027), + [sym_function_definition] = STATE(1027), + [sym_subshell] = STATE(1027), + [sym_pipeline] = STATE(1027), + [sym_list] = STATE(1027), + [sym_negated_command] = STATE(1027), + [sym_test_command] = STATE(1027), + [sym_declaration_command] = STATE(1027), + [sym_unset_command] = STATE(1027), + [sym_command] = STATE(1027), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(1022), + [sym_variable_assignment] = STATE(1028), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -23442,21 +24579,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -23474,69 +24611,69 @@ 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(277), + [sym_word] = ACTIONS(281), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2196), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_SEMI_SEMI] = ACTIONS(2194), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_LF] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2196), }, [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_for_statement] = STATE(1031), + [sym_c_style_for_statement] = STATE(1031), + [sym_while_statement] = STATE(1031), + [sym_if_statement] = STATE(1031), + [sym_case_statement] = STATE(1031), + [sym_function_definition] = STATE(1031), + [sym_subshell] = STATE(1031), + [sym_pipeline] = STATE(1031), + [sym_list] = STATE(1031), + [sym_negated_command] = STATE(1031), + [sym_test_command] = STATE(1031), + [sym_declaration_command] = STATE(1031), + [sym_unset_command] = STATE(1031), + [sym_command] = STATE(1031), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1026), + [sym_variable_assignment] = STATE(1032), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -23586,264 +24723,397 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(1033), + [sym_binary_expression] = STATE(1033), + [sym_unary_expression] = STATE(1033), + [sym_parenthesized_expression] = STATE(1033), + [sym_concatenation] = STATE(1033), [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), + [anon_sym_SEMI_SEMI] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_LF] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), }, [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__expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_parenthesized_expression] = STATE(1034), + [sym_concatenation] = STATE(1034), [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), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(373), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(371), - [sym_test_operator] = ACTIONS(1043), + [sym_word] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), }, [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__expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_parenthesized_expression] = STATE(1034), + [sym_concatenation] = STATE(1034), [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), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(365), + [sym__special_characters] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2202), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2206), + [anon_sym_BQUOTE] = ACTIONS(2208), + [anon_sym_LT_LPAREN] = ACTIONS(2210), + [anon_sym_GT_LPAREN] = ACTIONS(2210), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(383), + [sym_test_operator] = ACTIONS(365), + [sym_regex] = ACTIONS(2212), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1037), + [sym__concat] = ACTIONS(2214), + [anon_sym_SEMI_SEMI] = ACTIONS(2020), + [sym__special_characters] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2022), + [sym_raw_string] = ACTIONS(2020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), + [anon_sym_BQUOTE] = ACTIONS(2020), + [anon_sym_LT_LPAREN] = ACTIONS(2020), + [anon_sym_GT_LPAREN] = ACTIONS(2020), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_LF] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2020), }, [563] = { - [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(2017), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(1040), + [anon_sym_DQUOTE] = ACTIONS(2216), + [anon_sym_DOLLAR] = ACTIONS(2218), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [564] = { - [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(2185), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2179), + [sym_string] = STATE(1042), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(2220), + [sym_raw_string] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_AT] = ACTIONS(2220), + [anon_sym_QMARK] = ACTIONS(2220), + [anon_sym_0] = ACTIONS(2226), + [anon_sym__] = ACTIONS(2226), }, [565] = { - [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), + [aux_sym_concatenation_repeat1] = STATE(1037), + [sym__concat] = ACTIONS(2214), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2038), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_word] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), }, [566] = { - [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(2199), - [anon_sym_LF] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2199), + [sym_subscript] = STATE(1048), + [sym_variable_name] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2232), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2232), + [anon_sym_QMARK] = ACTIONS(2232), + [anon_sym_0] = ACTIONS(2236), + [anon_sym__] = ACTIONS(2236), }, [567] = { - [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(2205), - [anon_sym_LF] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2205), + [sym__terminated_statement] = STATE(1051), + [sym_for_statement] = STATE(1049), + [sym_c_style_for_statement] = STATE(1049), + [sym_while_statement] = STATE(1049), + [sym_if_statement] = STATE(1049), + [sym_case_statement] = STATE(1049), + [sym_function_definition] = STATE(1049), + [sym_subshell] = STATE(1049), + [sym_pipeline] = STATE(1049), + [sym_list] = STATE(1049), + [sym_negated_command] = STATE(1049), + [sym_test_command] = STATE(1049), + [sym_declaration_command] = STATE(1049), + [sym_unset_command] = STATE(1049), + [sym_command] = STATE(1049), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1050), + [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(1051), + [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), }, [568] = { - [sym__terminated_statement] = STATE(1036), + [sym__terminated_statement] = STATE(1054), + [sym_for_statement] = STATE(1052), + [sym_c_style_for_statement] = STATE(1052), + [sym_while_statement] = STATE(1052), + [sym_if_statement] = STATE(1052), + [sym_case_statement] = STATE(1052), + [sym_function_definition] = STATE(1052), + [sym_subshell] = STATE(1052), + [sym_pipeline] = STATE(1052), + [sym_list] = STATE(1052), + [sym_negated_command] = STATE(1052), + [sym_test_command] = STATE(1052), + [sym_declaration_command] = STATE(1052), + [sym_unset_command] = STATE(1052), + [sym_command] = STATE(1052), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1053), + [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(1054), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [569] = { + [sym__terminated_statement] = STATE(1057), + [sym_for_statement] = STATE(1055), + [sym_c_style_for_statement] = STATE(1055), + [sym_while_statement] = STATE(1055), + [sym_if_statement] = STATE(1055), + [sym_case_statement] = STATE(1055), + [sym_function_definition] = STATE(1055), + [sym_subshell] = STATE(1055), + [sym_pipeline] = STATE(1055), + [sym_list] = STATE(1055), + [sym_negated_command] = STATE(1055), + [sym_test_command] = STATE(1055), + [sym_declaration_command] = STATE(1055), + [sym_unset_command] = STATE(1055), + [sym_command] = STATE(1055), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1056), + [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(1057), + [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), + }, + [570] = { + [sym_concatenation] = STATE(1059), + [sym_string] = STATE(565), + [sym_simple_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [sym_expansion] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [aux_sym_for_statement_repeat1] = STATE(1059), + [anon_sym_SEMI_SEMI] = ACTIONS(2238), + [sym__special_characters] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(1093), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1097), + [anon_sym_BQUOTE] = ACTIONS(1099), + [anon_sym_LT_LPAREN] = ACTIONS(1101), + [anon_sym_GT_LPAREN] = ACTIONS(1101), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2238), + }, + [571] = { + [sym__terminated_statement] = STATE(1061), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -23869,13 +25139,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1036), + [aux_sym_program_repeat1] = STATE(1061), [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_done] = ACTIONS(2244), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), @@ -23909,65 +25179,173 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [569] = { - [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(2209), - [anon_sym_LF] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2209), + [572] = { + [anon_sym_esac] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_SEMI_SEMI] = ACTIONS(2246), + [anon_sym_PIPE_AMP] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_BQUOTE] = ACTIONS(2246), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_LF] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2248), }, - [570] = { + [573] = { + [sym__simple_heredoc_body] = ACTIONS(2250), + [sym__heredoc_body_beginning] = ACTIONS(2250), + [sym_file_descriptor] = ACTIONS(2250), + [anon_sym_esac] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_SEMI_SEMI] = ACTIONS(2250), + [anon_sym_PIPE_AMP] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_GT] = ACTIONS(2252), + [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_AMP_GT] = ACTIONS(2252), + [anon_sym_AMP_GT_GT] = ACTIONS(2250), + [anon_sym_LT_AMP] = ACTIONS(2250), + [anon_sym_GT_AMP] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2252), + [anon_sym_LT_LT_DASH] = ACTIONS(2250), + [anon_sym_LT_LT_LT] = ACTIONS(2250), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym_LF] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2252), + }, + [574] = { + [sym__terminated_statement] = STATE(1063), + [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(1063), + [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(2254), + [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), + }, + [575] = { + [anon_sym_esac] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_SEMI_SEMI] = ACTIONS(2256), + [anon_sym_PIPE_AMP] = ACTIONS(2256), + [anon_sym_AMP_AMP] = ACTIONS(2256), + [anon_sym_PIPE_PIPE] = ACTIONS(2256), + [anon_sym_BQUOTE] = ACTIONS(2256), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_LF] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2258), + }, + [576] = { [sym_file_redirect] = STATE(491), [sym_heredoc_redirect] = STATE(491), - [sym_heredoc_body] = STATE(1037), + [sym_heredoc_body] = STATE(1064), [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(2209), - [anon_sym_LF] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2209), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_SEMI_SEMI] = ACTIONS(2256), + [anon_sym_PIPE_AMP] = ACTIONS(2256), + [anon_sym_AMP_AMP] = ACTIONS(2256), + [anon_sym_PIPE_PIPE] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(311), + [anon_sym_LT_AMP] = ACTIONS(311), + [anon_sym_GT_AMP] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(317), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_LF] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2258), }, - [571] = { - [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(2213), - [anon_sym_LF] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2213), + [577] = { + [anon_sym_esac] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_SEMI_SEMI] = ACTIONS(2260), + [anon_sym_PIPE_AMP] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_BQUOTE] = ACTIONS(2260), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_LF] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2262), }, - [572] = { - [sym__terminated_statement] = STATE(1038), + [578] = { + [sym__terminated_statement] = STATE(1065), [sym_for_statement] = STATE(40), [sym_c_style_for_statement] = STATE(40), [sym_while_statement] = STATE(40), @@ -24031,928 +25409,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [573] = { - [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] = { - [anon_sym_fi] = ACTIONS(2219), - [anon_sym_elif] = ACTIONS(2219), - [anon_sym_else] = ACTIONS(2219), - [sym_comment] = ACTIONS(53), - }, - [575] = { - [anon_sym_fi] = ACTIONS(2221), - [sym_comment] = ACTIONS(53), - }, - [576] = { - [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_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__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_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__terminated_statement] = STATE(1066), + [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(1066), + [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(2264), + [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(2235), + [sym_word] = ACTIONS(55), }, [580] = { - [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), + [anon_sym_fi] = ACTIONS(2266), + [anon_sym_elif] = ACTIONS(2266), + [anon_sym_else] = ACTIONS(2266), + [sym_comment] = ACTIONS(53), }, [581] = { - [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), + [anon_sym_fi] = ACTIONS(2268), + [sym_comment] = ACTIONS(53), }, [582] = { - [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_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_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] = { - [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_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] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2258), - [sym_comment] = ACTIONS(53), - }, - [588] = { - [sym_concatenation] = STATE(1064), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1064), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_EQ] = ACTIONS(2262), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_COLON] = ACTIONS(2262), - [anon_sym_COLON_QMARK] = ACTIONS(2262), - [anon_sym_COLON_DASH] = ACTIONS(2262), - [anon_sym_PERCENT] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [589] = { - [sym_concatenation] = STATE(1067), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1067), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_EQ] = ACTIONS(2270), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_COLON] = ACTIONS(2270), - [anon_sym_COLON_QMARK] = ACTIONS(2270), - [anon_sym_COLON_DASH] = ACTIONS(2270), - [anon_sym_PERCENT] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [590] = { - [sym_concatenation] = STATE(1069), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1069), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_EQ] = ACTIONS(2276), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_COLON] = ACTIONS(2276), - [anon_sym_COLON_QMARK] = ACTIONS(2276), - [anon_sym_COLON_DASH] = ACTIONS(2276), - [anon_sym_PERCENT] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [591] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [sym__special_characters] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1774), - [anon_sym_GT_LPAREN] = ACTIONS(1774), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1774), - }, - [592] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2282), - }, - [593] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [594] = { - [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] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2286), - }, - [596] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [597] = { - [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), - [sym_word] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_LF] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1826), - }, - [598] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2290), - }, - [599] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [600] = { - [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(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_LF] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1832), - }, - [601] = { - [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_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_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(325), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_LF] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - }, - [604] = { - [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), - [sym_word] = ACTIONS(819), - }, - [605] = { - [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), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_LF] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - }, - [606] = { - [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(325), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_LF] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - }, - [607] = { - [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(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(819), - }, - [609] = { - [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(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] = { - [sym_compound_statement] = STATE(1080), - [anon_sym_LBRACE] = ACTIONS(435), - [sym_comment] = ACTIONS(53), - }, - [612] = { - [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] = { - [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] = { - [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_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(2316), - [anon_sym_LF] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2316), - }, - [615] = { - [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__terminated_statement] = STATE(1069), + [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(580), + [sym_else_clause] = STATE(1068), + [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(614), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -24962,17 +25515,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1083), + [aux_sym_program_repeat1] = STATE(1069), + [aux_sym_if_statement_repeat1] = STATE(1070), [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(2270), + [anon_sym_elif] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), [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), @@ -25002,17 +25558,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [616] = { - [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), + [583] = { + [sym_elif_clause] = STATE(580), + [sym_else_clause] = STATE(1068), + [aux_sym_if_statement_repeat1] = STATE(1071), + [anon_sym_fi] = ACTIONS(2268), + [anon_sym_elif] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2274), [sym_comment] = ACTIONS(53), }, - [617] = { + [584] = { + [sym__concat] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1664), + }, + [585] = { + [sym_case_item] = STATE(1077), + [sym_last_case_item] = STATE(1075), + [sym_concatenation] = STATE(1076), + [sym_string] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_command_substitution] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [aux_sym_case_statement_repeat1] = STATE(1077), + [anon_sym_esac] = ACTIONS(2276), + [sym__special_characters] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2280), + [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(2282), + }, + [586] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2284), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_LF] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2284), + }, + [587] = { + [aux_sym_concatenation_repeat1] = STATE(587), + [sym__concat] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1664), + }, + [588] = { + [sym__concat] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + }, + [589] = { + [anon_sym_DQUOTE] = ACTIONS(2291), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [590] = { + [sym_case_item] = STATE(1082), + [sym_last_case_item] = STATE(1081), + [sym_concatenation] = STATE(1076), + [sym_string] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_command_substitution] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [aux_sym_case_statement_repeat1] = STATE(1082), + [anon_sym_esac] = ACTIONS(2293), + [sym__special_characters] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2280), + [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(2282), + }, + [591] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2295), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_LF] = ACTIONS(2295), + [anon_sym_AMP] = ACTIONS(2295), + }, + [592] = { [sym_concatenation] = STATE(1087), [sym_string] = STATE(1086), [sym_simple_expansion] = STATE(1086), @@ -25020,1065 +25679,648 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RBRACE] = ACTIONS(2299), + [sym__special_characters] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2328), + [sym_word] = ACTIONS(2303), }, - [618] = { - [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), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_LF] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2330), - }, - [619] = { - [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_word] = ACTIONS(999), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LF] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(999), - }, - [620] = { - [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), - [sym_word] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(975), - }, - [621] = { - [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] = { - [anon_sym_RPAREN] = ACTIONS(2334), + [593] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(2305), [sym_comment] = ACTIONS(53), }, - [623] = { - [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), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1169), + [594] = { + [sym_concatenation] = STATE(1091), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1091), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_EQ] = ACTIONS(2309), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2313), + [anon_sym_COLON] = ACTIONS(2309), + [anon_sym_COLON_QMARK] = ACTIONS(2309), + [anon_sym_COLON_DASH] = ACTIONS(2309), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [624] = { - [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), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_LF] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1291), + [595] = { + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1094), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_EQ] = ACTIONS(2317), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [625] = { - [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), + [596] = { + [sym_concatenation] = STATE(1096), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1096), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_EQ] = ACTIONS(2323), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_COLON] = ACTIONS(2323), + [anon_sym_COLON_QMARK] = ACTIONS(2323), + [anon_sym_COLON_DASH] = ACTIONS(2323), + [anon_sym_PERCENT] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [597] = { + [sym__concat] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1788), }, - [626] = { - [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), - [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), + [598] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2329), }, - [627] = { - [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), + [599] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [628] = { - [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), - [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(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), - [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] = { - [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_compound_statement] = STATE(1101), - [anon_sym_LBRACE] = ACTIONS(435), + [600] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1832), }, - [632] = { - [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), + [601] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2333), }, - [633] = { - [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), + [602] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [634] = { - [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), + [603] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + }, + [604] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2337), + }, + [605] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [606] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(1846), + [anon_sym_SEMI_SEMI] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + }, + [607] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [608] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_SEMI_SEMI] = ACTIONS(2341), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_LF] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2343), + }, + [609] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_SEMI_SEMI] = ACTIONS(2341), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_LF] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2343), }, - [635] = { - [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), + [610] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(2339), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [611] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2345), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(2339), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_LF] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(2347), + }, + [612] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2345), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2339), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_LF] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(2347), + }, + [613] = { + [sym__concat] = ACTIONS(1878), + [anon_sym_in] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + }, + [614] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [615] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_SEMI_SEMI] = ACTIONS(2351), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_LF] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2353), + }, + [616] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_SEMI_SEMI] = ACTIONS(2351), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_LF] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2353), + }, + [617] = { + [sym_compound_statement] = STATE(1107), + [anon_sym_LBRACE] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + }, + [618] = { + [sym_file_descriptor] = ACTIONS(2355), + [anon_sym_esac] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_SEMI_SEMI] = ACTIONS(2355), + [anon_sym_PIPE_AMP] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_PIPE_PIPE] = ACTIONS(2355), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_GT] = ACTIONS(2357), + [anon_sym_GT_GT] = ACTIONS(2355), + [anon_sym_AMP_GT] = ACTIONS(2357), + [anon_sym_AMP_GT_GT] = ACTIONS(2355), + [anon_sym_LT_AMP] = ACTIONS(2355), + [anon_sym_GT_AMP] = ACTIONS(2355), + [anon_sym_BQUOTE] = ACTIONS(2355), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_LF] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2357), + }, + [619] = { + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(2359), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_LF] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2361), + }, + [620] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(2359), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_LF] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2361), + }, + [621] = { + [sym__terminated_statement] = STATE(1110), + [sym_for_statement] = STATE(619), + [sym_c_style_for_statement] = STATE(619), + [sym_while_statement] = STATE(619), + [sym_if_statement] = STATE(619), + [sym_case_statement] = STATE(619), + [sym_function_definition] = STATE(619), + [sym_subshell] = STATE(619), + [sym_pipeline] = STATE(619), + [sym_list] = STATE(619), + [sym_negated_command] = STATE(619), + [sym_test_command] = STATE(619), + [sym_declaration_command] = STATE(619), + [sym_unset_command] = STATE(619), + [sym_command] = STATE(619), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(620), + [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(1110), + [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(2363), + [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(2371), + [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(2371), + [sym_word] = ACTIONS(55), }, - [636] = { - [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(1914), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1914), - }, - [637] = { - [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] = { - [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), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_LF] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(653), - }, - [639] = { - [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), - [anon_sym_SEMI] = ACTIONS(669), - [anon_sym_LF] = ACTIONS(667), - [anon_sym_AMP] = ACTIONS(669), - }, - [640] = { - [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), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LF] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1926), - }, - [641] = { - [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), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [642] = { - [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] = { - [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(1932), - [anon_sym_LF] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1932), - }, - [644] = { - [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), - [sym_word] = ACTIONS(2388), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - }, - [645] = { - [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), + [622] = { + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_GT] = ACTIONS(2365), + [anon_sym_GT_GT] = ACTIONS(2367), + [anon_sym_AMP_GT] = ACTIONS(2365), + [anon_sym_AMP_GT_GT] = ACTIONS(2367), + [anon_sym_LT_AMP] = ACTIONS(2367), + [anon_sym_GT_AMP] = ACTIONS(2367), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), }, - [646] = { - [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), - [sym_word] = ACTIONS(473), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_LF] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1932), - }, - [647] = { - [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] = { - [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] = { - [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(995), - }, - [650] = { - [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(973), - }, - [651] = { - [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] = { - [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_test_operator] = ACTIONS(683), - }, - [653] = { - [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__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(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), - }, - [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] = { - [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(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(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(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(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] = { + [623] = { [sym_concatenation] = STATE(1114), [sym_string] = STATE(1113), [sym_simple_expansion] = STATE(1113), @@ -26086,2187 +26328,2553 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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__special_characters] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(2371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2410), + [sym_word] = ACTIONS(2371), }, - [661] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2412), + [624] = { + [anon_sym_esac] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_SEMI_SEMI] = ACTIONS(2373), + [anon_sym_PIPE_AMP] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_BQUOTE] = ACTIONS(2373), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2375), }, - [662] = { - [sym_concatenation] = STATE(1118), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1118), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(2416), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2418), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2420), - [anon_sym_COLON] = ACTIONS(2416), - [anon_sym_COLON_QMARK] = ACTIONS(2416), - [anon_sym_COLON_DASH] = ACTIONS(2416), - [anon_sym_PERCENT] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [663] = { - [sym_concatenation] = STATE(1121), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1121), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_EQ] = ACTIONS(2424), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2428), - [anon_sym_COLON] = ACTIONS(2424), - [anon_sym_COLON_QMARK] = ACTIONS(2424), - [anon_sym_COLON_DASH] = ACTIONS(2424), - [anon_sym_PERCENT] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [664] = { - [sym_concatenation] = STATE(1123), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1123), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(2430), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2434), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym_COLON_QMARK] = ACTIONS(2430), - [anon_sym_COLON_DASH] = ACTIONS(2430), - [anon_sym_PERCENT] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [665] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_EQ_TILDE] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), + [625] = { + [aux_sym_concatenation_repeat1] = STATE(1115), + [sym_file_descriptor] = ACTIONS(1021), + [sym__concat] = ACTIONS(1023), + [sym_variable_name] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_SEMI_SEMI] = ACTIONS(1021), + [anon_sym_PIPE_AMP] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(1025), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1025), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1025), + [sym_raw_string] = ACTIONS(1021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_BQUOTE] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1021), + [anon_sym_GT_LPAREN] = ACTIONS(1021), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1772), + [sym_word] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1025), }, - [666] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2436), - }, - [667] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [668] = { - [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_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2440), - }, - [670] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [671] = { - [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_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2444), - }, - [673] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [674] = { - [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_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] = { - [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), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_LF] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2450), - }, - [677] = { - [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(325), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_LF] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2450), - }, - [678] = { - [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] = { - [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(2454), - [anon_sym_LF] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2454), - }, - [680] = { - [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), - [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_LF] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2454), - }, - [681] = { - [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_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(819), - }, - [683] = { - [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_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_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] = { - [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] = { - [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_heredoc_start] = ACTIONS(2490), - [sym_comment] = ACTIONS(53), - }, - [689] = { - [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(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(2496), - [anon_sym_LF] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2496), - }, - [691] = { - [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] = { - [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_test_operator] = ACTIONS(2395), - }, - [693] = { - [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] = { - [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] = { - [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] = { - [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(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] = { - [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] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2511), - [sym_comment] = ACTIONS(53), - }, - [699] = { - [sym_concatenation] = STATE(1157), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1157), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2515), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2519), - [anon_sym_COLON] = ACTIONS(2515), - [anon_sym_COLON_QMARK] = ACTIONS(2515), - [anon_sym_COLON_DASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [700] = { - [sym_concatenation] = STATE(1160), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1160), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_EQ] = ACTIONS(2523), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2525), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2527), - [anon_sym_COLON] = ACTIONS(2523), - [anon_sym_COLON_QMARK] = ACTIONS(2523), - [anon_sym_COLON_DASH] = ACTIONS(2523), - [anon_sym_PERCENT] = ACTIONS(2523), - [anon_sym_DASH] = ACTIONS(2523), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [701] = { - [sym_concatenation] = STATE(1162), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1162), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_EQ] = ACTIONS(2529), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2533), - [anon_sym_COLON] = ACTIONS(2529), - [anon_sym_COLON_QMARK] = ACTIONS(2529), - [anon_sym_COLON_DASH] = ACTIONS(2529), - [anon_sym_PERCENT] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [702] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1772), - [anon_sym_EQ_TILDE] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1772), - }, - [703] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2535), - }, - [704] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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), + [626] = { + [aux_sym_concatenation_repeat1] = STATE(1115), + [sym_file_descriptor] = ACTIONS(999), + [sym__concat] = ACTIONS(1023), + [sym_variable_name] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [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(1001), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_AMP_GT] = ACTIONS(1001), + [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), + [anon_sym_DOLLAR] = ACTIONS(1001), [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_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(1001), + }, + [627] = { + [sym_file_redirect] = STATE(1116), + [sym_heredoc_redirect] = STATE(1116), + [sym_heredoc_body] = STATE(575), + [sym_herestring_redirect] = STATE(1116), + [aux_sym_while_statement_repeat1] = STATE(1116), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_SEMI_SEMI] = ACTIONS(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_AMP_GT] = ACTIONS(479), + [anon_sym_AMP_GT_GT] = ACTIONS(481), + [anon_sym_LT_AMP] = ACTIONS(481), + [anon_sym_GT_AMP] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1107), + }, + [628] = { + [anon_sym_RPAREN] = ACTIONS(2377), + [sym_comment] = ACTIONS(53), + }, + [629] = { + [sym_file_redirect] = STATE(624), + [sym_file_descriptor] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1193), + [anon_sym_SEMI_SEMI] = ACTIONS(1193), + [anon_sym_PIPE_AMP] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_GT] = ACTIONS(2381), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_GT] = ACTIONS(2381), + [anon_sym_AMP_GT_GT] = ACTIONS(2383), + [anon_sym_LT_AMP] = ACTIONS(2383), + [anon_sym_GT_AMP] = ACTIONS(2383), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1191), + }, + [630] = { + [sym_file_redirect] = STATE(1123), + [sym_heredoc_redirect] = STATE(1123), + [sym_herestring_redirect] = STATE(1123), + [aux_sym_while_statement_repeat1] = STATE(1123), + [sym_file_descriptor] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1315), + [anon_sym_SEMI_SEMI] = ACTIONS(1315), + [anon_sym_PIPE_AMP] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1315), + [anon_sym_PIPE_PIPE] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), + [anon_sym_GT_GT] = ACTIONS(2389), + [anon_sym_AMP_GT] = ACTIONS(2387), + [anon_sym_AMP_GT_GT] = ACTIONS(2389), + [anon_sym_LT_AMP] = ACTIONS(2389), + [anon_sym_GT_AMP] = ACTIONS(2389), + [anon_sym_LT_LT] = ACTIONS(1321), + [anon_sym_LT_LT_DASH] = ACTIONS(1323), + [anon_sym_LT_LT_LT] = ACTIONS(2391), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LF] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1313), + }, + [631] = { + [sym_concatenation] = STATE(730), + [sym_string] = STATE(1125), + [sym_array] = STATE(730), + [sym_simple_expansion] = STATE(1125), + [sym_string_expansion] = STATE(1125), + [sym_expansion] = STATE(1125), + [sym_command_substitution] = STATE(1125), + [sym_process_substitution] = STATE(1125), + [sym__empty_value] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1419), + [sym__special_characters] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(167), + [anon_sym_DOLLAR] = ACTIONS(169), + [sym_raw_string] = ACTIONS(2395), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(175), + [anon_sym_BQUOTE] = ACTIONS(177), + [anon_sym_LT_LPAREN] = ACTIONS(179), + [anon_sym_GT_LPAREN] = ACTIONS(179), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2395), + }, + [632] = { + [aux_sym_concatenation_repeat1] = STATE(1126), + [sym__concat] = ACTIONS(581), + [sym_variable_name] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [633] = { + [sym_variable_assignment] = STATE(633), + [sym_subscript] = STATE(252), + [sym_concatenation] = STATE(633), + [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(633), + [sym_variable_name] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [sym__special_characters] = ACTIONS(2400), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1494), + [sym_raw_string] = ACTIONS(2403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1506), + [anon_sym_LT_LPAREN] = ACTIONS(1509), + [anon_sym_GT_LPAREN] = ACTIONS(1509), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1512), + [sym_word] = ACTIONS(2406), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1484), + }, + [634] = { + [aux_sym_concatenation_repeat1] = STATE(1127), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [635] = { + [sym_concatenation] = STATE(635), + [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(635), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_SEMI_SEMI] = ACTIONS(1576), + [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [sym__special_characters] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1584), + [sym_raw_string] = ACTIONS(2412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1590), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1593), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_LT_LPAREN] = ACTIONS(1599), + [anon_sym_GT_LPAREN] = ACTIONS(1599), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1602), + [sym_word] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_LF] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1574), + }, + [636] = { + [aux_sym_concatenation_repeat1] = STATE(636), + [sym__simple_heredoc_body] = ACTIONS(1664), + [sym__heredoc_body_beginning] = ACTIONS(1664), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1666), + [anon_sym_EQ_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [637] = { + [sym_compound_statement] = STATE(1128), + [anon_sym_LBRACE] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + }, + [638] = { + [anon_sym_esac] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2420), + [anon_sym_LF] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2420), + }, + [639] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1894), + }, + [640] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1894), + }, + [641] = { + [sym_concatenation] = STATE(928), + [sym_string] = STATE(1130), + [sym_simple_expansion] = STATE(1130), + [sym_string_expansion] = STATE(1130), + [sym_expansion] = STATE(1130), + [sym_command_substitution] = STATE(1130), + [sym_process_substitution] = STATE(1130), + [sym__special_characters] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(2424), + [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(2424), + }, + [642] = { + [aux_sym_concatenation_repeat1] = STATE(257), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1926), + [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(1926), + [anon_sym_EQ_EQ] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [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(1926), + [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(53), + [sym_word] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), + }, + [643] = { + [aux_sym_concatenation_repeat1] = STATE(257), + [sym__simple_heredoc_body] = ACTIONS(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_RPAREN] = ACTIONS(1928), + [anon_sym_SEMI_SEMI] = ACTIONS(1928), + [anon_sym_PIPE_AMP] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [anon_sym_EQ_TILDE] = ACTIONS(1930), + [anon_sym_EQ_EQ] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1928), + [anon_sym_LT_LT_LT] = ACTIONS(1928), + [sym__special_characters] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1928), + [anon_sym_DOLLAR] = ACTIONS(1930), + [sym_raw_string] = ACTIONS(1928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), + [anon_sym_BQUOTE] = ACTIONS(1928), + [anon_sym_LT_LPAREN] = ACTIONS(1928), + [anon_sym_GT_LPAREN] = ACTIONS(1928), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [644] = { + [aux_sym_concatenation_repeat1] = STATE(1131), + [sym__simple_heredoc_body] = ACTIONS(661), + [sym__heredoc_body_beginning] = ACTIONS(661), + [sym_file_descriptor] = ACTIONS(661), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(661), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_AMP_GT] = ACTIONS(665), + [anon_sym_AMP_GT_GT] = ACTIONS(661), + [anon_sym_LT_AMP] = ACTIONS(661), + [anon_sym_GT_AMP] = ACTIONS(661), + [anon_sym_LT_LT] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(661), + [anon_sym_LT_LT_LT] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [645] = { + [aux_sym_concatenation_repeat1] = STATE(1131), + [sym__simple_heredoc_body] = ACTIONS(679), + [sym__heredoc_body_beginning] = ACTIONS(679), + [sym_file_descriptor] = ACTIONS(679), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_LT_LT_DASH] = ACTIONS(679), + [anon_sym_LT_LT_LT] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [646] = { + [aux_sym_concatenation_repeat1] = STATE(1131), + [sym__simple_heredoc_body] = ACTIONS(1936), + [sym__heredoc_body_beginning] = ACTIONS(1936), + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1936), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1936), + [anon_sym_LT_AMP] = ACTIONS(1936), + [anon_sym_GT_AMP] = ACTIONS(1936), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1936), + [anon_sym_LT_LT_LT] = ACTIONS(1936), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [647] = { + [aux_sym_concatenation_repeat1] = STATE(1131), + [sym__simple_heredoc_body] = ACTIONS(1940), + [sym__heredoc_body_beginning] = ACTIONS(1940), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), + }, + [648] = { + [sym_file_redirect] = STATE(648), + [sym_heredoc_redirect] = STATE(648), + [sym_herestring_redirect] = STATE(648), + [aux_sym_while_statement_repeat1] = STATE(648), + [sym__simple_heredoc_body] = ACTIONS(1948), + [sym__heredoc_body_beginning] = ACTIONS(1948), + [sym_file_descriptor] = ACTIONS(2426), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), + [anon_sym_PIPE_AMP] = ACTIONS(1948), + [anon_sym_AMP_AMP] = ACTIONS(1948), + [anon_sym_PIPE_PIPE] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(2429), + [anon_sym_GT] = ACTIONS(2429), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_AMP_GT] = ACTIONS(2429), + [anon_sym_AMP_GT_GT] = ACTIONS(2432), + [anon_sym_LT_AMP] = ACTIONS(2432), + [anon_sym_GT_AMP] = ACTIONS(2432), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(2435), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1953), + }, + [649] = { + [sym_file_redirect] = STATE(648), + [sym_heredoc_redirect] = STATE(648), + [sym_heredoc_body] = STATE(930), + [sym_herestring_redirect] = STATE(648), + [aux_sym_while_statement_repeat1] = STATE(648), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), + [anon_sym_PIPE_AMP] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_AMP_GT] = ACTIONS(479), + [anon_sym_AMP_GT_GT] = ACTIONS(481), + [anon_sym_LT_AMP] = ACTIONS(481), + [anon_sym_GT_AMP] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1946), + }, + [650] = { + [sym_concatenation] = STATE(650), + [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(650), + [sym__simple_heredoc_body] = ACTIONS(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_RPAREN] = ACTIONS(1928), + [anon_sym_SEMI_SEMI] = ACTIONS(1928), + [anon_sym_PIPE_AMP] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [anon_sym_EQ_TILDE] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1928), + [anon_sym_LT_LT_LT] = ACTIONS(1928), + [sym__special_characters] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_DOLLAR] = ACTIONS(1979), + [sym_raw_string] = ACTIONS(2444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1988), + [anon_sym_BQUOTE] = ACTIONS(1991), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [651] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2450), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [652] = { + [sym_file_redirect] = STATE(1133), + [sym_heredoc_redirect] = STATE(1133), + [sym_heredoc_body] = STATE(930), + [sym_herestring_redirect] = STATE(1133), + [sym_concatenation] = STATE(650), + [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(1133), + [aux_sym_command_repeat2] = STATE(650), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), + [anon_sym_PIPE_AMP] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_EQ_TILDE] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_AMP_GT] = ACTIONS(479), + [anon_sym_AMP_GT_GT] = ACTIONS(481), + [anon_sym_LT_AMP] = ACTIONS(481), + [anon_sym_GT_AMP] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [sym__special_characters] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(487), + [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(489), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1946), + }, + [653] = { + [sym_file_descriptor] = ACTIONS(999), + [sym_variable_name] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_AMP_GT] = ACTIONS(1001), + [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(1001), + [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(53), [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), + [654] = { + [sym_concatenation] = STATE(1135), + [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(1135), + [anon_sym_RPAREN] = ACTIONS(2452), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2576), + [sym_word] = ACTIONS(1011), }, - [733] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2578), + [655] = { + [aux_sym_concatenation_repeat1] = STATE(380), + [sym_file_descriptor] = ACTIONS(1021), + [sym__concat] = ACTIONS(663), + [sym_variable_name] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(1025), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1025), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1025), + [sym_raw_string] = ACTIONS(1021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_BQUOTE] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1021), + [anon_sym_GT_LPAREN] = ACTIONS(1021), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1021), + }, + [656] = { + [aux_sym_concatenation_repeat1] = STATE(380), + [sym_file_descriptor] = ACTIONS(999), + [sym__concat] = ACTIONS(663), + [sym_variable_name] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_AMP_GT] = ACTIONS(1001), + [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(1001), + [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(53), + [sym_word] = ACTIONS(999), + }, + [657] = { + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1247), + }, + [658] = { + [aux_sym_concatenation_repeat1] = STATE(1136), + [sym__concat] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_EQ_TILDE] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(695), + }, + [659] = { + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_RBRACK] = ACTIONS(2454), + [anon_sym_EQ_TILDE] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2454), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2454), + }, + [660] = { + [sym__expression] = STATE(728), + [sym_binary_expression] = STATE(728), + [sym_unary_expression] = STATE(728), + [sym_parenthesized_expression] = STATE(728), + [sym_concatenation] = STATE(728), + [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(499), + [sym__special_characters] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(503), + [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(505), + [sym_test_operator] = ACTIONS(507), + }, + [661] = { + [sym__expression] = STATE(728), + [sym_binary_expression] = STATE(728), + [sym_unary_expression] = STATE(728), + [sym_parenthesized_expression] = STATE(728), + [sym_concatenation] = STATE(728), + [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(1401), + [anon_sym_BANG] = ACTIONS(499), + [sym__special_characters] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(1405), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(505), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1407), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1409), + [anon_sym_BQUOTE] = ACTIONS(1411), + [anon_sym_LT_LPAREN] = ACTIONS(1413), + [anon_sym_GT_LPAREN] = ACTIONS(1413), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(505), + [sym_test_operator] = ACTIONS(499), + [sym_regex] = ACTIONS(1415), + }, + [662] = { + [sym__concat] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1664), + [anon_sym_EQ_EQ] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG_EQ] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1664), + }, + [663] = { + [aux_sym_concatenation_repeat1] = STATE(663), + [sym__concat] = ACTIONS(2460), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1664), + [anon_sym_EQ_EQ] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG_EQ] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1664), + }, + [664] = { + [sym__concat] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_RBRACK] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1671), + }, + [665] = { + [anon_sym_DQUOTE] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [666] = { + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(1140), + [sym_simple_expansion] = STATE(1140), + [sym_string_expansion] = STATE(1140), + [sym_expansion] = STATE(1140), + [sym_command_substitution] = STATE(1140), + [sym_process_substitution] = STATE(1140), + [anon_sym_RBRACE] = ACTIONS(2465), + [sym__special_characters] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2469), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2469), + }, + [667] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(2471), [sym_comment] = ACTIONS(53), }, - [734] = { - [sym_concatenation] = STATE(1183), + [668] = { + [sym_concatenation] = STATE(1145), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1183), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_EQ] = ACTIONS(2582), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2584), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2586), - [anon_sym_COLON] = ACTIONS(2582), - [anon_sym_COLON_QMARK] = ACTIONS(2582), - [anon_sym_COLON_DASH] = ACTIONS(2582), - [anon_sym_PERCENT] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1145), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_EQ] = ACTIONS(2475), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2477), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2475), + [anon_sym_COLON_QMARK] = ACTIONS(2475), + [anon_sym_COLON_DASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [735] = { - [sym_concatenation] = STATE(1186), + [669] = { + [sym_concatenation] = STATE(1148), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1186), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_EQ] = ACTIONS(2590), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2592), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2594), - [anon_sym_COLON] = ACTIONS(2590), - [anon_sym_COLON_QMARK] = ACTIONS(2590), - [anon_sym_COLON_DASH] = ACTIONS(2590), - [anon_sym_PERCENT] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1148), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_EQ] = ACTIONS(2483), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2485), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2487), + [anon_sym_COLON] = ACTIONS(2483), + [anon_sym_COLON_QMARK] = ACTIONS(2483), + [anon_sym_COLON_DASH] = ACTIONS(2483), + [anon_sym_PERCENT] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [736] = { - [sym_concatenation] = STATE(1188), + [670] = { + [sym_concatenation] = STATE(1150), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1188), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_EQ] = ACTIONS(2596), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2600), - [anon_sym_COLON] = ACTIONS(2596), - [anon_sym_COLON_QMARK] = ACTIONS(2596), - [anon_sym_COLON_DASH] = ACTIONS(2596), - [anon_sym_PERCENT] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1150), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_EQ] = ACTIONS(2489), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2491), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2493), + [anon_sym_COLON] = ACTIONS(2489), + [anon_sym_COLON_QMARK] = ACTIONS(2489), + [anon_sym_COLON_DASH] = ACTIONS(2489), + [anon_sym_PERCENT] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [737] = { - [sym__concat] = ACTIONS(1772), - [sym_variable_name] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [sym__special_characters] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1774), - [anon_sym_GT_LPAREN] = ACTIONS(1774), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1774), - [sym_word] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1774), + [671] = { + [sym__concat] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [anon_sym_RBRACK] = ACTIONS(1788), + [anon_sym_EQ_TILDE] = ACTIONS(1788), + [anon_sym_EQ_EQ] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1788), + [anon_sym_GT] = ACTIONS(1788), + [anon_sym_BANG_EQ] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1788), }, - [738] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2602), + [672] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2495), }, - [739] = { - [sym_concatenation] = STATE(885), + [673] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2604), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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), + [674] = { + [sym__concat] = 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), + [anon_sym_RBRACK] = ACTIONS(1832), + [anon_sym_EQ_TILDE] = ACTIONS(1832), + [anon_sym_EQ_EQ] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_BANG_EQ] = ACTIONS(1832), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_test_operator] = ACTIONS(1832), }, - [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), + [675] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2499), }, - [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), - [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(2641), - }, - [762] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2643), - [sym_comment] = ACTIONS(53), - }, - [763] = { - [sym_concatenation] = STATE(1207), + [676] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1207), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_EQ] = ACTIONS(2647), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2651), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2647), - [anon_sym_COLON_DASH] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [764] = { + [677] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_EQ_TILDE] = ACTIONS(1840), + [anon_sym_EQ_EQ] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_GT] = ACTIONS(1840), + [anon_sym_BANG_EQ] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1840), + }, + [678] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2503), + }, + [679] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [680] = { + [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), + }, + [681] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2505), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [682] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2505), + [anon_sym_SEMI_SEMI] = ACTIONS(2507), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_LF] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2509), + }, + [683] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2505), + [anon_sym_SEMI_SEMI] = ACTIONS(2507), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_LF] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2509), + }, + [684] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(2505), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [685] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2511), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(2505), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_LF] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2513), + }, + [686] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2511), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2505), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_LF] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2513), + }, + [687] = { + [sym__concat] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_RBRACK] = ACTIONS(1878), + [anon_sym_EQ_TILDE] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1878), + }, + [688] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [689] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_SEMI_SEMI] = ACTIONS(2517), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_LF] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2519), + }, + [690] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_SEMI_SEMI] = ACTIONS(2517), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_LF] = ACTIONS(2517), + [anon_sym_AMP] = ACTIONS(2519), + }, + [691] = { + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_PIPE_PIPE] = ACTIONS(2521), + [anon_sym_RBRACK] = ACTIONS(2521), + [anon_sym_EQ_TILDE] = ACTIONS(2521), + [anon_sym_EQ_EQ] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), + [anon_sym_BANG_EQ] = ACTIONS(2521), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2521), + }, + [692] = { + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_GT] = ACTIONS(2525), + [anon_sym_GT_GT] = ACTIONS(2527), + [anon_sym_AMP_GT] = ACTIONS(2525), + [anon_sym_AMP_GT_GT] = ACTIONS(2527), + [anon_sym_LT_AMP] = ACTIONS(2527), + [anon_sym_GT_AMP] = ACTIONS(2527), + [sym_comment] = ACTIONS(53), + }, + [693] = { + [sym_concatenation] = STATE(1170), + [sym_string] = STATE(1165), + [sym_simple_expansion] = STATE(1165), + [sym_string_expansion] = STATE(1165), + [sym_expansion] = STATE(1165), + [sym_command_substitution] = STATE(1165), + [sym_process_substitution] = STATE(1165), + [sym__special_characters] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(2535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2535), + }, + [694] = { + [sym_heredoc_start] = ACTIONS(2545), + [sym_comment] = ACTIONS(53), + }, + [695] = { + [sym_concatenation] = STATE(1174), + [sym_string] = STATE(1173), + [sym_simple_expansion] = STATE(1173), + [sym_string_expansion] = STATE(1173), + [sym_expansion] = STATE(1173), + [sym_command_substitution] = STATE(1173), + [sym_process_substitution] = STATE(1173), + [sym__special_characters] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(2549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2549), + }, + [696] = { + [sym_file_redirect] = STATE(1175), + [sym_heredoc_redirect] = STATE(1175), + [sym_herestring_redirect] = STATE(1175), + [aux_sym_while_statement_repeat1] = STATE(1175), + [sym_file_descriptor] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SEMI_SEMI] = ACTIONS(2553), + [anon_sym_PIPE_AMP] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_PIPE_PIPE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_AMP_GT] = ACTIONS(1317), + [anon_sym_AMP_GT_GT] = ACTIONS(1319), + [anon_sym_LT_AMP] = ACTIONS(1319), + [anon_sym_GT_AMP] = ACTIONS(1319), + [anon_sym_LT_LT] = ACTIONS(1321), + [anon_sym_LT_LT_DASH] = ACTIONS(1323), + [anon_sym_LT_LT_LT] = ACTIONS(1325), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LF] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + }, + [697] = { + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_PIPE_PIPE] = ACTIONS(2521), + [anon_sym_RBRACK] = ACTIONS(2521), + [anon_sym_EQ_TILDE] = ACTIONS(2521), + [anon_sym_EQ_EQ] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), + [anon_sym_BANG_EQ] = ACTIONS(2521), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2521), + }, + [698] = { + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2454), + [anon_sym_EQ_TILDE] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2454), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2454), + }, + [699] = { + [sym__concat] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1664), + [anon_sym_EQ_EQ] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG_EQ] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1664), + }, + [700] = { + [aux_sym_concatenation_repeat1] = STATE(700), + [sym__concat] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1664), + [anon_sym_EQ_EQ] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG_EQ] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1664), + }, + [701] = { + [sym__concat] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1671), + }, + [702] = { + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [703] = { + [sym_concatenation] = STATE(1180), + [sym_string] = STATE(1179), + [sym_simple_expansion] = STATE(1179), + [sym_string_expansion] = STATE(1179), + [sym_expansion] = STATE(1179), + [sym_command_substitution] = STATE(1179), + [sym_process_substitution] = STATE(1179), + [anon_sym_RBRACE] = ACTIONS(2560), + [sym__special_characters] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2564), + }, + [704] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(2566), + [sym_comment] = ACTIONS(53), + }, + [705] = { + [sym_concatenation] = STATE(1184), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1184), + [anon_sym_RBRACE] = ACTIONS(2568), + [anon_sym_EQ] = ACTIONS(2570), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2574), + [anon_sym_COLON] = ACTIONS(2570), + [anon_sym_COLON_QMARK] = ACTIONS(2570), + [anon_sym_COLON_DASH] = ACTIONS(2570), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [706] = { + [sym_concatenation] = STATE(1187), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1187), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_EQ] = ACTIONS(2578), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2580), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2582), + [anon_sym_COLON] = ACTIONS(2578), + [anon_sym_COLON_QMARK] = ACTIONS(2578), + [anon_sym_COLON_DASH] = ACTIONS(2578), + [anon_sym_PERCENT] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2578), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [707] = { + [sym_concatenation] = STATE(1189), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1189), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_EQ] = ACTIONS(2584), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_COLON_QMARK] = ACTIONS(2584), + [anon_sym_COLON_DASH] = ACTIONS(2584), + [anon_sym_PERCENT] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [708] = { + [sym__concat] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1788), + [anon_sym_EQ_TILDE] = ACTIONS(1788), + [anon_sym_EQ_EQ] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1788), + [anon_sym_GT] = ACTIONS(1788), + [anon_sym_BANG_EQ] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1788), + }, + [709] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2590), + }, + [710] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [711] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1832), + [anon_sym_PIPE_PIPE] = ACTIONS(1832), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1832), + [anon_sym_EQ_TILDE] = ACTIONS(1832), + [anon_sym_EQ_EQ] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_BANG_EQ] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1832), + }, + [712] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2594), + }, + [713] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [714] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1840), + [anon_sym_EQ_TILDE] = ACTIONS(1840), + [anon_sym_EQ_EQ] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_GT] = ACTIONS(1840), + [anon_sym_BANG_EQ] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1840), + }, + [715] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2598), + }, + [716] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [717] = { + [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), + }, + [718] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [719] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2600), + [anon_sym_SEMI_SEMI] = ACTIONS(2602), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_LF] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2604), + }, + [720] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2600), + [anon_sym_SEMI_SEMI] = ACTIONS(2602), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_LF] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2604), + }, + [721] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(2600), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [722] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2606), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(2600), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_LF] = ACTIONS(2606), + [anon_sym_AMP] = ACTIONS(2608), + }, + [723] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2606), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2600), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_LF] = ACTIONS(2606), + [anon_sym_AMP] = ACTIONS(2608), + }, + [724] = { + [sym__concat] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1878), + [anon_sym_EQ_TILDE] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1878), + }, + [725] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2610), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [726] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2610), + [anon_sym_SEMI_SEMI] = ACTIONS(2612), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_LF] = ACTIONS(2612), + [anon_sym_AMP] = ACTIONS(2614), + }, + [727] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2610), + [anon_sym_SEMI_SEMI] = ACTIONS(2612), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_LF] = ACTIONS(2612), + [anon_sym_AMP] = ACTIONS(2614), + }, + [728] = { + [anon_sym_RPAREN] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_PIPE_PIPE] = ACTIONS(2521), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2521), + [anon_sym_EQ_TILDE] = ACTIONS(2521), + [anon_sym_EQ_EQ] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), + [anon_sym_BANG_EQ] = ACTIONS(2521), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2521), + }, + [729] = { + [anon_sym_RPAREN] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_PIPE_PIPE] = ACTIONS(2521), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2521), + [anon_sym_EQ_TILDE] = ACTIONS(2521), + [anon_sym_EQ_EQ] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), + [anon_sym_BANG_EQ] = ACTIONS(2521), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2521), + }, + [730] = { + [sym_variable_name] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [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(1001), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1001), + [sym_word] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(1001), + }, + [731] = { + [sym_concatenation] = STATE(1201), + [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(1201), + [anon_sym_RPAREN] = ACTIONS(2616), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1011), + }, + [732] = { + [aux_sym_concatenation_repeat1] = STATE(334), + [sym__concat] = ACTIONS(581), + [sym_variable_name] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_SEMI_SEMI] = ACTIONS(1021), + [anon_sym_PIPE_AMP] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1025), + [sym_raw_string] = ACTIONS(1021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_BQUOTE] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1021), + [anon_sym_GT_LPAREN] = ACTIONS(1021), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1025), + [sym_word] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1025), + }, + [733] = { + [aux_sym_concatenation_repeat1] = STATE(334), + [sym__concat] = ACTIONS(581), + [sym_variable_name] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [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(1001), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1001), + [sym_word] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(1001), + }, + [734] = { + [sym__concat] = ACTIONS(1664), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1666), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [735] = { + [aux_sym_concatenation_repeat1] = STATE(735), + [sym__concat] = ACTIONS(2618), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1666), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [736] = { + [sym__concat] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1673), + [sym_word] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), + }, + [737] = { + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [738] = { + [sym_concatenation] = STATE(1206), + [sym_string] = STATE(1205), + [sym_simple_expansion] = STATE(1205), + [sym_string_expansion] = STATE(1205), + [sym_expansion] = STATE(1205), + [sym_command_substitution] = STATE(1205), + [sym_process_substitution] = STATE(1205), + [anon_sym_RBRACE] = ACTIONS(2623), + [sym__special_characters] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2627), + }, + [739] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(2629), + [sym_comment] = ACTIONS(53), + }, + [740] = { [sym_concatenation] = STATE(1210), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -28275,231 +28883,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1210), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2655), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2659), - [anon_sym_COLON] = ACTIONS(2655), - [anon_sym_COLON_QMARK] = ACTIONS(2655), - [anon_sym_COLON_DASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2633), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_COLON] = ACTIONS(2633), + [anon_sym_COLON_QMARK] = ACTIONS(2633), + [anon_sym_COLON_DASH] = ACTIONS(2633), + [anon_sym_PERCENT] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [765] = { - [sym_concatenation] = STATE(1212), + [741] = { + [sym_concatenation] = STATE(1213), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1212), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(2661), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2663), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_COLON] = ACTIONS(2661), - [anon_sym_COLON_QMARK] = ACTIONS(2661), - [anon_sym_COLON_DASH] = ACTIONS(2661), - [anon_sym_PERCENT] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1213), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2641), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2643), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_COLON] = ACTIONS(2641), + [anon_sym_COLON_QMARK] = ACTIONS(2641), + [anon_sym_COLON_DASH] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [766] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [sym__special_characters] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1774), - [anon_sym_GT_LPAREN] = ACTIONS(1774), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1774), - [sym_word] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1774), - }, - [767] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2667), - }, - [768] = { - [sym_concatenation] = STATE(885), + [742] = { + [sym_concatenation] = STATE(1215), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1215), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_EQ] = ACTIONS(2647), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_COLON_QMARK] = ACTIONS(2647), + [anon_sym_COLON_DASH] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [769] = { - [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), + [743] = { + [sym__concat] = ACTIONS(1788), + [sym_variable_name] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1790), + [sym_word] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), }, - [770] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2671), + [744] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2653), }, - [771] = { - [sym_concatenation] = STATE(885), + [745] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [772] = { - [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_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2675), - }, - [774] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [775] = { - [sym__concat] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1832), + [746] = { + [sym__concat] = ACTIONS(1832), + [sym_variable_name] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), [anon_sym_RPAREN] = ACTIONS(1832), [anon_sym_SEMI_SEMI] = ACTIONS(1832), [anon_sym_PIPE_AMP] = ACTIONS(1832), @@ -28507,429 +29033,518 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(1832), [sym__special_characters] = ACTIONS(1832), [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), [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), - }, - [776] = { - [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), }, - [777] = { - [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), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_LF] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), + [747] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2657), }, - [778] = { - [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), - [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_LF] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - }, - [779] = { - [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_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), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LF] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - }, - [781] = { - [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(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), - }, - [783] = { - [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] = { - [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), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_LF] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2693), - }, - [785] = { - [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_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] = { - [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_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] = { - [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(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_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] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2708), - [sym_comment] = ACTIONS(53), - }, - [792] = { - [sym_concatenation] = STATE(1231), + [748] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1231), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_EQ] = ACTIONS(2712), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2712), - [anon_sym_COLON_QMARK] = ACTIONS(2712), - [anon_sym_COLON_DASH] = ACTIONS(2712), - [anon_sym_PERCENT] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [793] = { + [749] = { + [sym__concat] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [750] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2661), + }, + [751] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [752] = { + [sym__concat] = ACTIONS(1846), + [sym_variable_name] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [753] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [754] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_SEMI_SEMI] = ACTIONS(2665), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_LF] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2667), + }, + [755] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_SEMI_SEMI] = ACTIONS(2665), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_LF] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2667), + }, + [756] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(2663), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [757] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2669), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(2663), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2671), + }, + [758] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2669), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2663), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2671), + }, + [759] = { + [sym__concat] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1880), + [sym_word] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + }, + [760] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2673), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [761] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2673), + [anon_sym_SEMI_SEMI] = ACTIONS(2675), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_LF] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2677), + }, + [762] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2673), + [anon_sym_SEMI_SEMI] = ACTIONS(2675), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_LF] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2677), + }, + [763] = { + [sym__concat] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1666), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [764] = { + [aux_sym_concatenation_repeat1] = STATE(764), + [sym__concat] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1666), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [765] = { + [sym__concat] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1673), + [sym_word] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), + }, + [766] = { + [anon_sym_DQUOTE] = ACTIONS(2682), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [767] = { + [sym_concatenation] = STATE(1230), + [sym_string] = STATE(1229), + [sym_simple_expansion] = STATE(1229), + [sym_string_expansion] = STATE(1229), + [sym_expansion] = STATE(1229), + [sym_command_substitution] = STATE(1229), + [sym_process_substitution] = STATE(1229), + [anon_sym_RBRACE] = ACTIONS(2684), + [sym__special_characters] = ACTIONS(2686), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2688), + }, + [768] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(2690), + [sym_comment] = ACTIONS(53), + }, + [769] = { [sym_concatenation] = STATE(1234), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -28938,1122 +29553,1813 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1234), - [anon_sym_RBRACE] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2720), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2720), - [anon_sym_COLON_QMARK] = ACTIONS(2720), - [anon_sym_COLON_DASH] = ACTIONS(2720), - [anon_sym_PERCENT] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2694), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2698), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_COLON_QMARK] = ACTIONS(2694), + [anon_sym_COLON_DASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [794] = { - [sym_concatenation] = STATE(1236), + [770] = { + [sym_concatenation] = STATE(1237), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1236), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(2726), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_COLON] = ACTIONS(2726), - [anon_sym_COLON_QMARK] = ACTIONS(2726), - [anon_sym_COLON_DASH] = ACTIONS(2726), - [anon_sym_PERCENT] = ACTIONS(2726), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1237), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_EQ] = ACTIONS(2702), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2706), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_COLON_QMARK] = ACTIONS(2702), + [anon_sym_COLON_DASH] = ACTIONS(2702), + [anon_sym_PERCENT] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [795] = { - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [sym_variable_name] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1772), - [anon_sym_AMP_GT] = ACTIONS(1774), - [anon_sym_AMP_GT_GT] = ACTIONS(1772), - [anon_sym_LT_AMP] = ACTIONS(1772), - [anon_sym_GT_AMP] = ACTIONS(1772), - [sym__special_characters] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_LT_LPAREN] = ACTIONS(1772), - [anon_sym_GT_LPAREN] = ACTIONS(1772), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1772), - }, - [796] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2732), - }, - [797] = { - [sym_concatenation] = STATE(885), + [771] = { + [sym_concatenation] = STATE(1239), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1239), + [anon_sym_RBRACE] = ACTIONS(2684), + [anon_sym_EQ] = ACTIONS(2708), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2712), + [anon_sym_COLON] = ACTIONS(2708), + [anon_sym_COLON_QMARK] = ACTIONS(2708), + [anon_sym_COLON_DASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [798] = { - [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), + [772] = { + [sym__concat] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1816), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1790), + [sym_word] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), }, - [799] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2736), + [773] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2714), }, - [800] = { - [sym_concatenation] = STATE(885), + [774] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [801] = { - [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(1824), - }, - [802] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2740), - }, - [803] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [804] = { - [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] = { - [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] = { - [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), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_LF] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2746), - }, - [807] = { - [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(325), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_LF] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2746), - }, - [808] = { - [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] = { - [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), - [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_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2750), - }, - [811] = { - [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_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), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2758), - }, - [814] = { - [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(325), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2758), - }, - [815] = { - [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), - }, - [816] = { - [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] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2772), - [sym_comment] = ACTIONS(53), - }, - [818] = { - [sym_concatenation] = STATE(1254), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1254), - [anon_sym_RBRACE] = ACTIONS(2774), - [anon_sym_EQ] = ACTIONS(2776), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2780), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_COLON_QMARK] = ACTIONS(2776), - [anon_sym_COLON_DASH] = ACTIONS(2776), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2776), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [819] = { - [sym_concatenation] = STATE(1257), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1257), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_EQ] = ACTIONS(2784), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_COLON] = ACTIONS(2784), - [anon_sym_COLON_QMARK] = ACTIONS(2784), - [anon_sym_COLON_DASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [820] = { - [sym_concatenation] = STATE(1259), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1259), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_EQ] = ACTIONS(2790), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_DASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [821] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym__string_content] = ACTIONS(1772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [sym_comment] = ACTIONS(179), - }, - [822] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2796), - }, - [823] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [824] = { - [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), - }, - [825] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2800), - }, - [826] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [827] = { - [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), - }, - [828] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2804), - }, - [829] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [830] = { - [sym__concat] = ACTIONS(1830), + [775] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [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__string_content] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1832), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), [anon_sym_BQUOTE] = ACTIONS(1832), - [sym_comment] = ACTIONS(179), - }, - [831] = { - [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), + [anon_sym_LT_LPAREN] = ACTIONS(1832), + [anon_sym_GT_LPAREN] = ACTIONS(1832), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), }, - [832] = { - [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), + [776] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2718), }, - [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), + [777] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2720), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [778] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [779] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2722), + }, + [780] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2684), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [781] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [782] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [783] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_SEMI_SEMI] = ACTIONS(2726), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_LF] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2728), + }, + [784] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_SEMI_SEMI] = ACTIONS(2726), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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(2810), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - }, - [834] = { - [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), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_LF] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2728), }, - [835] = { - [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), + [785] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(2724), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, - [836] = { - [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), + [786] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2730), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(2724), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_LF] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2732), + }, + [787] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2730), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(2808), + [anon_sym_BQUOTE] = ACTIONS(2724), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_LF] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2732), + }, + [788] = { + [sym__concat] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1880), + [sym_word] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + }, + [789] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [790] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_SEMI_SEMI] = ACTIONS(2736), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2738), + }, + [791] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2734), + [anon_sym_SEMI_SEMI] = ACTIONS(2736), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2738), + }, + [792] = { + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1664), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1664), + }, + [793] = { + [aux_sym_concatenation_repeat1] = STATE(793), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(2740), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1664), + }, + [794] = { + [sym_file_descriptor] = ACTIONS(1671), + [sym__concat] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1673), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1671), + }, + [795] = { + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [796] = { + [sym_concatenation] = STATE(1254), + [sym_string] = STATE(1253), + [sym_simple_expansion] = STATE(1253), + [sym_string_expansion] = STATE(1253), + [sym_expansion] = STATE(1253), + [sym_command_substitution] = STATE(1253), + [sym_process_substitution] = STATE(1253), + [anon_sym_RBRACE] = ACTIONS(2745), + [sym__special_characters] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2749), + }, + [797] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(2751), + [sym_comment] = ACTIONS(53), + }, + [798] = { + [sym_concatenation] = STATE(1258), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1258), + [anon_sym_RBRACE] = ACTIONS(2753), + [anon_sym_EQ] = ACTIONS(2755), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2759), + [anon_sym_COLON] = ACTIONS(2755), + [anon_sym_COLON_QMARK] = ACTIONS(2755), + [anon_sym_COLON_DASH] = ACTIONS(2755), + [anon_sym_PERCENT] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [799] = { + [sym_concatenation] = STATE(1261), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1261), + [anon_sym_RBRACE] = ACTIONS(2761), + [anon_sym_EQ] = ACTIONS(2763), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2767), + [anon_sym_COLON] = ACTIONS(2763), + [anon_sym_COLON_QMARK] = ACTIONS(2763), + [anon_sym_COLON_DASH] = ACTIONS(2763), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [800] = { + [sym_concatenation] = STATE(1263), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1263), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_EQ] = ACTIONS(2769), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2773), + [anon_sym_COLON] = ACTIONS(2769), + [anon_sym_COLON_QMARK] = ACTIONS(2769), + [anon_sym_COLON_DASH] = ACTIONS(2769), + [anon_sym_PERCENT] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [801] = { + [sym_file_descriptor] = ACTIONS(1788), + [sym__concat] = ACTIONS(1788), + [sym_variable_name] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_GT_GT] = ACTIONS(1788), + [anon_sym_AMP_GT] = ACTIONS(1790), + [anon_sym_AMP_GT_GT] = ACTIONS(1788), + [anon_sym_LT_AMP] = ACTIONS(1788), + [anon_sym_GT_AMP] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1788), + }, + [802] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2775), + }, + [803] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2777), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [804] = { + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [sym_variable_name] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1834), + [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(1834), + [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(53), + [sym_word] = ACTIONS(1832), + }, + [805] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2779), + }, + [806] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2781), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [807] = { + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1840), + [anon_sym_LT_AMP] = ACTIONS(1840), + [anon_sym_GT_AMP] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1840), + }, + [808] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2783), + }, + [809] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [810] = { + [sym_file_descriptor] = ACTIONS(1846), + [sym__concat] = ACTIONS(1846), + [sym_variable_name] = 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), + }, + [811] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2785), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [812] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2785), + [anon_sym_SEMI_SEMI] = ACTIONS(2787), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_LF] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2789), + }, + [813] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2785), + [anon_sym_SEMI_SEMI] = ACTIONS(2787), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_LF] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2789), + }, + [814] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(2785), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [815] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2791), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(2785), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_LF] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2793), + }, + [816] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2791), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2785), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_LF] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2793), + }, + [817] = { + [sym_file_descriptor] = ACTIONS(1878), + [sym__concat] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1878), + }, + [818] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [819] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2797), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_LF] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2799), + }, + [820] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_SEMI_SEMI] = ACTIONS(2797), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_LF] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2799), + }, + [821] = { + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2801), + [sym__string_content] = ACTIONS(2803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2801), + [anon_sym_BQUOTE] = ACTIONS(2801), + [sym_comment] = ACTIONS(243), + }, + [822] = { + [sym_concatenation] = STATE(1277), + [sym_string] = STATE(1276), + [sym_simple_expansion] = STATE(1276), + [sym_string_expansion] = STATE(1276), + [sym_expansion] = STATE(1276), + [sym_command_substitution] = STATE(1276), + [sym_process_substitution] = STATE(1276), + [anon_sym_RBRACE] = ACTIONS(2805), + [sym__special_characters] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2809), + }, + [823] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(2811), + [sym_comment] = ACTIONS(53), + }, + [824] = { + [sym_concatenation] = STATE(1281), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1281), + [anon_sym_RBRACE] = ACTIONS(2813), + [anon_sym_EQ] = ACTIONS(2815), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2819), + [anon_sym_COLON] = ACTIONS(2815), + [anon_sym_COLON_QMARK] = ACTIONS(2815), + [anon_sym_COLON_DASH] = ACTIONS(2815), + [anon_sym_PERCENT] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [825] = { + [sym_concatenation] = STATE(1284), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1284), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_EQ] = ACTIONS(2823), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2827), + [anon_sym_COLON] = ACTIONS(2823), + [anon_sym_COLON_QMARK] = ACTIONS(2823), + [anon_sym_COLON_DASH] = ACTIONS(2823), + [anon_sym_PERCENT] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [826] = { + [sym_concatenation] = STATE(1286), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1286), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_EQ] = ACTIONS(2829), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_COLON] = ACTIONS(2829), + [anon_sym_COLON_QMARK] = ACTIONS(2829), + [anon_sym_COLON_DASH] = ACTIONS(2829), + [anon_sym_PERCENT] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [827] = { + [sym__concat] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym__string_content] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [sym_comment] = ACTIONS(243), + }, + [828] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2835), + }, + [829] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [830] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym__string_content] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [sym_comment] = ACTIONS(243), + }, + [831] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2839), + }, + [832] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2841), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [833] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym__string_content] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), + [anon_sym_BQUOTE] = ACTIONS(1842), + [sym_comment] = ACTIONS(243), + }, + [834] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2843), + }, + [835] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [836] = { + [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(243), }, [837] = { - [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), + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(2845), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [838] = { - [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2845), + [anon_sym_SEMI_SEMI] = ACTIONS(2847), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_LF] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2849), }, [839] = { - [aux_sym_concatenation_repeat1] = STATE(497), - [sym__concat] = ACTIONS(2822), - [anon_sym_RBRACK] = ACTIONS(2824), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2845), + [anon_sym_SEMI_SEMI] = ACTIONS(2847), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_LF] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2849), }, [840] = { - [aux_sym_concatenation_repeat1] = STATE(497), - [sym__concat] = ACTIONS(2826), - [anon_sym_RBRACK] = ACTIONS(2828), + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(2845), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [841] = { - [sym__concat] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(2828), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2851), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(2845), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym_LF] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2853), }, [842] = { - [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2851), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2845), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym_LF] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2853), }, [843] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2838), + [sym__simple_heredoc_body] = ACTIONS(2855), + [sym__heredoc_body_beginning] = ACTIONS(2855), + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_EQ_TILDE] = ACTIONS(2857), + [anon_sym_EQ_EQ] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2857), + [anon_sym_LT_LT_DASH] = ACTIONS(2855), + [anon_sym_LT_LT_LT] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), }, [844] = { - [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), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [845] = { - [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), - [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), + [aux_sym_concatenation_repeat1] = STATE(497), + [sym__concat] = ACTIONS(2859), + [anon_sym_RBRACK] = ACTIONS(2861), + [sym_comment] = ACTIONS(53), }, [846] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2852), + [aux_sym_concatenation_repeat1] = STATE(497), + [sym__concat] = ACTIONS(2863), + [anon_sym_RBRACK] = ACTIONS(2865), [sym_comment] = ACTIONS(53), }, [847] = { - [sym_subscript] = STATE(1287), - [sym_variable_name] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_DOLLAR] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2858), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_0] = ACTIONS(2862), - [anon_sym__] = ACTIONS(2862), + [sym__concat] = ACTIONS(2867), + [anon_sym_RBRACK] = ACTIONS(2865), + [sym_comment] = ACTIONS(53), }, [848] = { - [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__simple_heredoc_body] = ACTIONS(2869), + [sym__heredoc_body_beginning] = ACTIONS(2869), + [sym_file_descriptor] = ACTIONS(2869), + [sym__concat] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_EQ_TILDE] = ACTIONS(2871), + [anon_sym_EQ_EQ] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_AMP_GT] = ACTIONS(2871), + [anon_sym_AMP_GT_GT] = ACTIONS(2869), + [anon_sym_LT_AMP] = ACTIONS(2869), + [anon_sym_GT_AMP] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_LT_LT_DASH] = ACTIONS(2869), + [anon_sym_LT_LT_LT] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + }, + [849] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2875), + [sym_comment] = ACTIONS(53), + }, + [850] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(1305), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym_DOLLAR] = ACTIONS(2879), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [851] = { + [sym_string] = STATE(1307), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(2881), + [sym_raw_string] = ACTIONS(2883), + [anon_sym_POUND] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AT] = ACTIONS(2881), + [anon_sym_QMARK] = ACTIONS(2881), + [anon_sym_0] = ACTIONS(2887), + [anon_sym__] = ACTIONS(2887), + }, + [852] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2889), + [sym_comment] = ACTIONS(53), + }, + [853] = { + [sym_subscript] = STATE(1314), + [sym_variable_name] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_DOLLAR] = ACTIONS(2895), + [anon_sym_POUND] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2895), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2895), + [anon_sym_AT] = ACTIONS(2895), + [anon_sym_QMARK] = ACTIONS(2895), + [anon_sym_0] = ACTIONS(2899), + [anon_sym__] = ACTIONS(2899), + }, + [854] = { + [sym__terminated_statement] = STATE(1317), + [sym_for_statement] = STATE(1315), + [sym_c_style_for_statement] = STATE(1315), + [sym_while_statement] = STATE(1315), + [sym_if_statement] = STATE(1315), + [sym_case_statement] = STATE(1315), + [sym_function_definition] = STATE(1315), + [sym_subshell] = STATE(1315), + [sym_pipeline] = STATE(1315), + [sym_list] = STATE(1315), + [sym_negated_command] = STATE(1315), + [sym_test_command] = STATE(1315), + [sym_declaration_command] = STATE(1315), + [sym_unset_command] = STATE(1315), + [sym_command] = STATE(1315), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1289), + [sym_variable_assignment] = STATE(1316), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -30063,7 +31369,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(62), [sym_command_substitution] = STATE(62), [sym_process_substitution] = STATE(62), - [aux_sym_program_repeat1] = STATE(1290), + [aux_sym_program_repeat1] = STATE(1317), [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), @@ -30102,24 +31408,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [849] = { - [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), + [855] = { + [sym__terminated_statement] = STATE(1320), + [sym_for_statement] = STATE(1318), + [sym_c_style_for_statement] = STATE(1318), + [sym_while_statement] = STATE(1318), + [sym_if_statement] = STATE(1318), + [sym_case_statement] = STATE(1318), + [sym_function_definition] = STATE(1318), + [sym_subshell] = STATE(1318), + [sym_pipeline] = STATE(1318), + [sym_list] = STATE(1318), + [sym_negated_command] = STATE(1318), + [sym_test_command] = STATE(1318), + [sym_declaration_command] = STATE(1318), + [sym_unset_command] = STATE(1318), + [sym_command] = STATE(1318), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(1292), + [sym_variable_assignment] = STATE(1319), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -30129,26 +31435,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1293), + [aux_sym_program_repeat1] = STATE(1320), [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_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -30166,26 +31472,26 @@ 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(277), + [sym_word] = ACTIONS(281), }, - [850] = { - [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), + [856] = { + [sym__terminated_statement] = STATE(1323), + [sym_for_statement] = STATE(1321), + [sym_c_style_for_statement] = STATE(1321), + [sym_while_statement] = STATE(1321), + [sym_if_statement] = STATE(1321), + [sym_case_statement] = STATE(1321), + [sym_function_definition] = STATE(1321), + [sym_subshell] = STATE(1321), + [sym_pipeline] = STATE(1321), + [sym_list] = STATE(1321), + [sym_negated_command] = STATE(1321), + [sym_test_command] = STATE(1321), + [sym_declaration_command] = STATE(1321), + [sym_unset_command] = STATE(1321), + [sym_command] = STATE(1321), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1295), + [sym_variable_assignment] = STATE(1322), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -30195,7 +31501,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(62), [sym_command_substitution] = STATE(62), [sym_process_substitution] = STATE(62), - [aux_sym_program_repeat1] = STATE(1296), + [aux_sym_program_repeat1] = STATE(1323), [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), @@ -30234,780 +31540,561 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [851] = { - [anon_sym_RBRACE] = ACTIONS(2852), - [sym_comment] = ACTIONS(53), - }, - [852] = { - [sym_concatenation] = STATE(1299), - [sym_string] = STATE(1298), - [sym_simple_expansion] = STATE(1298), - [sym_string_expansion] = STATE(1298), - [sym_expansion] = STATE(1298), - [sym_command_substitution] = STATE(1298), - [sym_process_substitution] = STATE(1298), - [anon_sym_RBRACE] = ACTIONS(2852), - [sym__special_characters] = ACTIONS(2864), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(2866), - [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(2866), - }, - [853] = { - [sym__simple_heredoc_body] = ACTIONS(2868), - [sym__heredoc_body_beginning] = ACTIONS(2868), - [sym_file_descriptor] = ACTIONS(2868), - [sym__concat] = ACTIONS(2868), - [anon_sym_esac] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_EQ_TILDE] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_GT] = ACTIONS(2870), - [anon_sym_AMP_GT_GT] = ACTIONS(2870), - [anon_sym_LT_AMP] = ACTIONS(2870), - [anon_sym_GT_AMP] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_LT_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT_LT] = ACTIONS(2870), - [sym__special_characters] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym_raw_string] = ACTIONS(2870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [anon_sym_LT_LPAREN] = ACTIONS(2870), - [anon_sym_GT_LPAREN] = ACTIONS(2870), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - }, - [854] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2872), - }, - [855] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [856] = { - [sym__simple_heredoc_body] = ACTIONS(2876), - [sym__heredoc_body_beginning] = ACTIONS(2876), - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [anon_sym_esac] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [anon_sym_PIPE_AMP] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_EQ_TILDE] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2878), - [anon_sym_LT_AMP] = ACTIONS(2878), - [anon_sym_GT_AMP] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_LT_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT_LT] = ACTIONS(2878), - [sym__special_characters] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [anon_sym_LT_LPAREN] = ACTIONS(2878), - [anon_sym_GT_LPAREN] = ACTIONS(2878), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, [857] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2880), + [anon_sym_RBRACE] = ACTIONS(2889), + [sym_comment] = ACTIONS(53), }, [858] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_concatenation] = STATE(1326), + [sym_string] = STATE(1325), + [sym_simple_expansion] = STATE(1325), + [sym_string_expansion] = STATE(1325), + [sym_expansion] = STATE(1325), + [sym_command_substitution] = STATE(1325), + [sym_process_substitution] = STATE(1325), + [anon_sym_RBRACE] = ACTIONS(2889), + [sym__special_characters] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(2903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2903), }, [859] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2884), + [sym__simple_heredoc_body] = ACTIONS(2905), + [sym__heredoc_body_beginning] = ACTIONS(2905), + [sym_file_descriptor] = ACTIONS(2905), + [sym__concat] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_EQ_TILDE] = ACTIONS(2907), + [anon_sym_EQ_EQ] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2907), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_LT_LT_DASH] = ACTIONS(2905), + [anon_sym_LT_LT_LT] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), }, [860] = { - [sym_concatenation] = STATE(885), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2909), + }, + [861] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [861] = { - [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), - [sym__special_characters] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(2886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2886), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2911), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [862] = { - [aux_sym_concatenation_repeat1] = STATE(1306), - [sym__concat] = ACTIONS(1776), - [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(685), + [sym__simple_heredoc_body] = ACTIONS(2913), + [sym__heredoc_body_beginning] = ACTIONS(2913), + [sym_file_descriptor] = ACTIONS(2913), + [sym__concat] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_EQ_TILDE] = ACTIONS(2915), + [anon_sym_EQ_EQ] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_GT] = ACTIONS(2915), + [anon_sym_AMP_GT_GT] = ACTIONS(2913), + [anon_sym_LT_AMP] = ACTIONS(2913), + [anon_sym_GT_AMP] = ACTIONS(2913), + [anon_sym_LT_LT] = ACTIONS(2915), + [anon_sym_LT_LT_DASH] = ACTIONS(2913), + [anon_sym_LT_LT_LT] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), }, [863] = { - [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), - [sym_word] = ACTIONS(689), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2917), }, [864] = { - [anon_sym_DQUOTE] = ACTIONS(2888), - [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [865] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(2921), + }, + [866] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [867] = { + [sym_string] = STATE(1332), + [sym_simple_expansion] = STATE(1332), + [sym_string_expansion] = STATE(1332), + [sym_expansion] = STATE(1332), + [sym_command_substitution] = STATE(1332), + [sym_process_substitution] = STATE(1332), + [sym__special_characters] = ACTIONS(2923), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(2923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2923), + }, + [868] = { + [aux_sym_concatenation_repeat1] = STATE(1333), + [sym__concat] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(697), + [sym__special_characters] = ACTIONS(697), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_COLON] = ACTIONS(697), + [anon_sym_COLON_QMARK] = ACTIONS(697), + [anon_sym_COLON_DASH] = ACTIONS(697), + [anon_sym_PERCENT] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(697), + }, + [869] = { + [sym__concat] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(701), + [sym__special_characters] = ACTIONS(701), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_POUND] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_COLON_QMARK] = ACTIONS(701), + [anon_sym_COLON_DASH] = ACTIONS(701), + [anon_sym_PERCENT] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(701), + }, + [870] = { + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [871] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), [aux_sym_string_repeat1] = STATE(420), - [anon_sym_DQUOTE] = ACTIONS(2888), - [anon_sym_DOLLAR] = ACTIONS(2890), - [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), - }, - [866] = { - [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), - }, - [867] = { - [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(725), - }, - [868] = { - [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), - }, - [869] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2892), - [sym_comment] = ACTIONS(53), - }, - [870] = { - [sym_subscript] = STATE(1313), - [sym_variable_name] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2896), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_AT] = ACTIONS(2896), - [anon_sym_QMARK] = ACTIONS(2896), - [anon_sym_0] = ACTIONS(2900), - [anon_sym__] = ACTIONS(2900), - }, - [871] = { - [sym_concatenation] = STATE(1316), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1316), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_EQ] = ACTIONS(2904), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2906), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2908), - [anon_sym_COLON] = ACTIONS(2904), - [anon_sym_COLON_QMARK] = ACTIONS(2904), - [anon_sym_COLON_DASH] = ACTIONS(2904), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_DOLLAR] = ACTIONS(2927), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [872] = { - [sym_concatenation] = STATE(1319), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1319), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(2912), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2916), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_COLON_QMARK] = ACTIONS(2912), - [anon_sym_COLON_DASH] = ACTIONS(2912), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(731), + [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), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(733), }, [873] = { - [sym_concatenation] = STATE(1322), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1322), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2920), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2920), - [anon_sym_COLON_QMARK] = ACTIONS(2920), - [anon_sym_COLON_DASH] = ACTIONS(2920), - [anon_sym_PERCENT] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [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_comment] = ACTIONS(243), + [sym_word] = ACTIONS(737), }, [874] = { - [sym_concatenation] = STATE(1324), + [sym__concat] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(741), + [sym__special_characters] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_COLON_QMARK] = ACTIONS(741), + [anon_sym_COLON_DASH] = ACTIONS(741), + [anon_sym_PERCENT] = ACTIONS(741), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(741), + }, + [875] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(2929), + [sym_comment] = ACTIONS(53), + }, + [876] = { + [sym_subscript] = STATE(1340), + [sym_variable_name] = ACTIONS(2931), + [anon_sym_DOLLAR] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_AT] = ACTIONS(2933), + [anon_sym_QMARK] = ACTIONS(2933), + [anon_sym_0] = ACTIONS(2937), + [anon_sym__] = ACTIONS(2937), + }, + [877] = { + [sym_concatenation] = STATE(1343), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1324), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [875] = { - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(2932), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [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(2934), - [anon_sym_LF] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - }, - [876] = { - [sym_file_descriptor] = ACTIONS(323), - [sym_variable_name] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(2932), - [anon_sym_SEMI_SEMI] = ACTIONS(2934), - [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(2934), - [anon_sym_LF] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2934), - }, - [877] = { - [sym__terminated_statement] = STATE(273), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1328), - [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), + [aux_sym_expansion_repeat1] = STATE(1343), + [anon_sym_RBRACE] = ACTIONS(2939), + [anon_sym_EQ] = ACTIONS(2941), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_COLON] = ACTIONS(2941), + [anon_sym_COLON_QMARK] = ACTIONS(2941), + [anon_sym_COLON_DASH] = ACTIONS(2941), + [anon_sym_PERCENT] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [878] = { - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_SEMI_SEMI] = ACTIONS(2938), - [anon_sym_PIPE_AMP] = ACTIONS(795), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(2932), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2938), - [anon_sym_LF] = ACTIONS(2940), - [anon_sym_AMP] = ACTIONS(2938), + [sym_concatenation] = STATE(1346), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1346), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_EQ] = ACTIONS(2949), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_COLON] = ACTIONS(2949), + [anon_sym_COLON_QMARK] = ACTIONS(2949), + [anon_sym_COLON_DASH] = ACTIONS(2949), + [anon_sym_PERCENT] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [879] = { - [sym_file_descriptor] = ACTIONS(323), - [sym_variable_name] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_SEMI_SEMI] = ACTIONS(2938), - [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(2932), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(2938), - [anon_sym_LF] = ACTIONS(2940), - [anon_sym_AMP] = ACTIONS(2938), + [sym_concatenation] = STATE(1349), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1349), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_EQ] = ACTIONS(2957), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_COLON] = ACTIONS(2957), + [anon_sym_COLON_QMARK] = ACTIONS(2957), + [anon_sym_COLON_DASH] = ACTIONS(2957), + [anon_sym_PERCENT] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [880] = { - [sym__terminated_statement] = STATE(273), - [sym_for_statement] = STATE(1330), - [sym_c_style_for_statement] = STATE(1330), - [sym_while_statement] = STATE(1330), - [sym_if_statement] = STATE(1330), - [sym_case_statement] = STATE(1330), - [sym_function_definition] = STATE(1330), - [sym_subshell] = STATE(1330), - [sym_pipeline] = STATE(1330), - [sym_list] = STATE(1330), - [sym_negated_command] = STATE(1330), - [sym_test_command] = STATE(1330), - [sym_declaration_command] = STATE(1330), - [sym_unset_command] = STATE(1330), - [sym_command] = STATE(1330), - [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(1331), - [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), + [sym_concatenation] = STATE(1351), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1351), + [anon_sym_RBRACE] = ACTIONS(2963), + [anon_sym_EQ] = ACTIONS(2965), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(2965), + [anon_sym_COLON_QMARK] = ACTIONS(2965), + [anon_sym_COLON_DASH] = ACTIONS(2965), + [anon_sym_PERCENT] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [881] = { - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(2942), - [anon_sym_SEMI_SEMI] = ACTIONS(2944), - [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(2944), - [anon_sym_LF] = ACTIONS(2946), - [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2969), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_LF] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2973), }, [882] = { - [sym_file_descriptor] = ACTIONS(323), - [sym_variable_name] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(2942), - [anon_sym_SEMI_SEMI] = ACTIONS(2944), - [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2969), + [anon_sym_SEMI_SEMI] = ACTIONS(2971), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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(2944), - [anon_sym_LF] = ACTIONS(2946), - [anon_sym_AMP] = ACTIONS(2944), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_LF] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2973), }, [883] = { [sym__terminated_statement] = STATE(273), - [sym_for_statement] = STATE(1334), - [sym_c_style_for_statement] = STATE(1334), - [sym_while_statement] = STATE(1334), - [sym_if_statement] = STATE(1334), - [sym_case_statement] = STATE(1334), - [sym_function_definition] = STATE(1334), - [sym_subshell] = STATE(1334), - [sym_pipeline] = STATE(1334), - [sym_list] = STATE(1334), - [sym_negated_command] = STATE(1334), - [sym_test_command] = STATE(1334), - [sym_declaration_command] = STATE(1334), - [sym_unset_command] = STATE(1334), - [sym_command] = STATE(1334), + [sym_for_statement] = STATE(1354), + [sym_c_style_for_statement] = STATE(1354), + [sym_while_statement] = STATE(1354), + [sym_if_statement] = STATE(1354), + [sym_case_statement] = STATE(1354), + [sym_function_definition] = STATE(1354), + [sym_subshell] = STATE(1354), + [sym_pipeline] = STATE(1354), + [sym_list] = STATE(1354), + [sym_negated_command] = STATE(1354), + [sym_test_command] = STATE(1354), + [sym_declaration_command] = STATE(1354), + [sym_unset_command] = STATE(1354), + [sym_command] = STATE(1354), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1335), + [sym_variable_assignment] = STATE(1355), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -31057,1392 +32144,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [884] = { - [sym__simple_heredoc_body] = ACTIONS(2948), - [sym__heredoc_body_beginning] = ACTIONS(2948), - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [anon_sym_esac] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2950), - [anon_sym_PIPE_AMP] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_EQ_TILDE] = ACTIONS(2950), - [anon_sym_EQ_EQ] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2950), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2950), - [anon_sym_LT_AMP] = ACTIONS(2950), - [anon_sym_GT_AMP] = ACTIONS(2950), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2950), - [anon_sym_LT_LT_LT] = ACTIONS(2950), - [sym__special_characters] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [anon_sym_LT_LPAREN] = ACTIONS(2950), - [anon_sym_GT_LPAREN] = ACTIONS(2950), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2975), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(2969), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_LF] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2977), }, [885] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [sym__special_characters] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_DOLLAR] = ACTIONS(2963), - [sym_raw_string] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2954), - [anon_sym_COLON_QMARK] = ACTIONS(2954), - [anon_sym_COLON_DASH] = ACTIONS(2954), - [anon_sym_PERCENT] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2975), - [anon_sym_BQUOTE] = ACTIONS(2978), - [anon_sym_LT_LPAREN] = ACTIONS(2981), - [anon_sym_GT_LPAREN] = ACTIONS(2981), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2984), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(2975), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(2969), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_LF] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2977), }, [886] = { - [sym_concatenation] = STATE(1337), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1337), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_EQ] = ACTIONS(2989), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(2991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [887] = { - [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_concatenation] = STATE(1339), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1339), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_EQ] = ACTIONS(2999), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [889] = { - [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(3005), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3005), - }, - [890] = { - [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(819), - }, - [891] = { - [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), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_LF] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1085), - }, - [892] = { - [anon_sym_RPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(53), - }, - [893] = { - [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), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1169), - }, - [894] = { - [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), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_LF] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1291), - }, - [895] = { - [sym_compound_statement] = STATE(1349), - [anon_sym_LBRACE] = ACTIONS(435), - [sym_comment] = ACTIONS(53), - }, - [896] = { - [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(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), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_LF] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1880), - }, - [898] = { - [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(325), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_LF] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1880), - }, - [899] = { - [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), + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1357), + [sym_c_style_for_statement] = STATE(1357), + [sym_while_statement] = STATE(1357), + [sym_if_statement] = STATE(1357), + [sym_case_statement] = STATE(1357), + [sym_function_definition] = STATE(1357), + [sym_subshell] = STATE(1357), + [sym_pipeline] = STATE(1357), + [sym_list] = STATE(1357), + [sym_negated_command] = STATE(1357), + [sym_test_command] = STATE(1357), + [sym_declaration_command] = STATE(1357), + [sym_unset_command] = STATE(1357), + [sym_command] = STATE(1357), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1358), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(3023), + [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(3023), + [sym_word] = ACTIONS(281), }, - [900] = { - [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), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_LF] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(653), - }, - [901] = { - [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), - [anon_sym_SEMI] = ACTIONS(669), - [anon_sym_LF] = ACTIONS(667), - [anon_sym_AMP] = ACTIONS(669), - }, - [902] = { - [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(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_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), - [anon_sym_SEMI] = ACTIONS(1941), - [anon_sym_LF] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1941), - }, - [905] = { - [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), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_LF] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1932), - }, - [906] = { - [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), + [887] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2981), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2983), }, - [907] = { - [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__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_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_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] = { - [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] = { - [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_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(3040), - [sym_comment] = ACTIONS(53), - }, - [914] = { - [sym_subscript] = STATE(1360), - [sym_variable_name] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_AT] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_0] = ACTIONS(3048), - [anon_sym__] = ACTIONS(3048), - }, - [915] = { - [sym_concatenation] = STATE(1363), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1363), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_EQ] = ACTIONS(3052), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_COLON_QMARK] = ACTIONS(3052), - [anon_sym_COLON_DASH] = ACTIONS(3052), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_DASH] = ACTIONS(3052), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [916] = { - [sym_concatenation] = STATE(1366), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1366), - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3060), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3062), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [917] = { - [sym_concatenation] = STATE(1369), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1369), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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_subscript] = STATE(1382), - [sym_variable_name] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3111), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3111), - [anon_sym_QMARK] = ACTIONS(3111), - [anon_sym_0] = ACTIONS(3115), - [anon_sym__] = ACTIONS(3115), - }, - [941] = { - [sym_concatenation] = STATE(1385), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1385), - [anon_sym_RBRACE] = ACTIONS(3117), - [anon_sym_EQ] = ACTIONS(3119), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3123), - [anon_sym_COLON] = ACTIONS(3119), - [anon_sym_COLON_QMARK] = ACTIONS(3119), - [anon_sym_COLON_DASH] = ACTIONS(3119), - [anon_sym_PERCENT] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [942] = { - [sym_concatenation] = STATE(1388), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1388), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(3127), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [943] = { - [sym_concatenation] = STATE(1391), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1391), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_EQ] = ACTIONS(3135), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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), + [888] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_SEMI_SEMI] = ACTIONS(2981), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2983), }, - [946] = { + [889] = { [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_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(65), - [sym_variable_assignment] = STATE(1395), + [sym_variable_assignment] = STATE(1362), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -32491,175 +32360,1389 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [890] = { + [sym__simple_heredoc_body] = ACTIONS(2985), + [sym__heredoc_body_beginning] = ACTIONS(2985), + [sym_file_descriptor] = ACTIONS(2985), + [sym__concat] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_EQ_TILDE] = ACTIONS(2987), + [anon_sym_EQ_EQ] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_GT] = ACTIONS(2987), + [anon_sym_AMP_GT_GT] = ACTIONS(2985), + [anon_sym_LT_AMP] = ACTIONS(2985), + [anon_sym_GT_AMP] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_LT_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT_LT] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), }, - [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), + [891] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(2989), + [anon_sym_EQ] = ACTIONS(2991), + [sym__special_characters] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_DOLLAR] = ACTIONS(3000), + [sym_raw_string] = ACTIONS(3003), + [anon_sym_POUND] = ACTIONS(3006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_COLON] = ACTIONS(2991), + [anon_sym_COLON_QMARK] = ACTIONS(2991), + [anon_sym_COLON_DASH] = ACTIONS(2991), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2991), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3012), + [anon_sym_BQUOTE] = ACTIONS(3015), + [anon_sym_LT_LPAREN] = ACTIONS(3018), + [anon_sym_GT_LPAREN] = ACTIONS(3018), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(3021), + }, + [892] = { + [sym_concatenation] = STATE(1364), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1364), + [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(3026), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_COLON_QMARK] = ACTIONS(3026), + [anon_sym_COLON_DASH] = ACTIONS(3026), + [anon_sym_PERCENT] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [893] = { + [sym__simple_heredoc_body] = ACTIONS(3030), + [sym__heredoc_body_beginning] = ACTIONS(3030), + [sym_file_descriptor] = ACTIONS(3030), + [sym__concat] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_RPAREN] = ACTIONS(3030), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_EQ_TILDE] = ACTIONS(3032), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_GT] = ACTIONS(3032), + [anon_sym_AMP_GT_GT] = ACTIONS(3030), + [anon_sym_LT_AMP] = ACTIONS(3030), + [anon_sym_GT_AMP] = ACTIONS(3030), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_LT_LT_DASH] = ACTIONS(3030), + [anon_sym_LT_LT_LT] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + }, + [894] = { + [sym_concatenation] = STATE(1366), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1366), + [anon_sym_RBRACE] = ACTIONS(3034), + [anon_sym_EQ] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [895] = { + [sym__simple_heredoc_body] = ACTIONS(3040), + [sym__heredoc_body_beginning] = ACTIONS(3040), + [sym_file_descriptor] = ACTIONS(3040), + [sym__concat] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_RPAREN] = ACTIONS(3040), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_EQ_TILDE] = ACTIONS(3042), + [anon_sym_EQ_EQ] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_GT] = ACTIONS(3042), + [anon_sym_AMP_GT_GT] = ACTIONS(3040), + [anon_sym_LT_AMP] = ACTIONS(3040), + [anon_sym_GT_AMP] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3042), + [anon_sym_LT_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT_LT] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + }, + [896] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [897] = { + [sym_file_redirect] = STATE(1368), + [sym_heredoc_redirect] = STATE(1368), + [sym_heredoc_body] = STATE(575), + [sym_herestring_redirect] = STATE(1368), + [aux_sym_while_statement_repeat1] = STATE(1368), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(1109), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1107), + }, + [898] = { + [anon_sym_RPAREN] = ACTIONS(3046), + [sym_comment] = ACTIONS(53), + }, + [899] = { + [sym_file_redirect] = STATE(624), + [sym_file_descriptor] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_SEMI_SEMI] = ACTIONS(1193), + [anon_sym_PIPE_AMP] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_GT] = ACTIONS(3050), + [anon_sym_AMP_GT_GT] = ACTIONS(3052), + [anon_sym_LT_AMP] = ACTIONS(3052), + [anon_sym_GT_AMP] = ACTIONS(3052), + [anon_sym_BQUOTE] = ACTIONS(1193), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1191), + }, + [900] = { + [sym_file_redirect] = STATE(1375), + [sym_heredoc_redirect] = STATE(1375), + [sym_herestring_redirect] = STATE(1375), + [aux_sym_while_statement_repeat1] = STATE(1375), + [sym_file_descriptor] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_SEMI_SEMI] = ACTIONS(1315), + [anon_sym_PIPE_AMP] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1315), + [anon_sym_PIPE_PIPE] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(3058), + [anon_sym_LT_AMP] = ACTIONS(3058), + [anon_sym_GT_AMP] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(1321), + [anon_sym_LT_LT_DASH] = ACTIONS(1323), + [anon_sym_LT_LT_LT] = ACTIONS(3060), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LF] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1313), + }, + [901] = { + [sym_compound_statement] = STATE(1376), + [anon_sym_LBRACE] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + }, + [902] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(3141), + [anon_sym_BQUOTE] = ACTIONS(1888), [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(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), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1890), }, - [950] = { - [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), + [903] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1894), }, - [951] = { - [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), + [904] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1894), + }, + [905] = { + [sym_concatenation] = STATE(928), + [sym_string] = STATE(1378), + [sym_simple_expansion] = STATE(1378), + [sym_string_expansion] = STATE(1378), + [sym_expansion] = STATE(1378), + [sym_command_substitution] = STATE(1378), + [sym_process_substitution] = STATE(1378), + [sym__special_characters] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(3064), + [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(3064), + }, + [906] = { + [aux_sym_concatenation_repeat1] = STATE(1379), + [sym__simple_heredoc_body] = ACTIONS(661), + [sym__heredoc_body_beginning] = ACTIONS(661), + [sym_file_descriptor] = ACTIONS(661), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_AMP_GT] = ACTIONS(665), + [anon_sym_AMP_GT_GT] = ACTIONS(661), + [anon_sym_LT_AMP] = ACTIONS(661), + [anon_sym_GT_AMP] = ACTIONS(661), + [anon_sym_LT_LT] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(661), + [anon_sym_LT_LT_LT] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [907] = { + [aux_sym_concatenation_repeat1] = STATE(1379), + [sym__simple_heredoc_body] = ACTIONS(679), + [sym__heredoc_body_beginning] = ACTIONS(679), + [sym_file_descriptor] = ACTIONS(679), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_LT_LT_DASH] = ACTIONS(679), + [anon_sym_LT_LT_LT] = ACTIONS(679), + [anon_sym_BQUOTE] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [908] = { + [aux_sym_concatenation_repeat1] = STATE(1379), + [sym__simple_heredoc_body] = ACTIONS(1936), + [sym__heredoc_body_beginning] = ACTIONS(1936), + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1936), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1936), + [anon_sym_LT_AMP] = ACTIONS(1936), + [anon_sym_GT_AMP] = ACTIONS(1936), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1936), + [anon_sym_LT_LT_LT] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [909] = { + [aux_sym_concatenation_repeat1] = STATE(1379), + [sym__simple_heredoc_body] = ACTIONS(1940), + [sym__heredoc_body_beginning] = ACTIONS(1940), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), + }, + [910] = { + [sym_file_redirect] = STATE(910), + [sym_heredoc_redirect] = STATE(910), + [sym_herestring_redirect] = STATE(910), + [aux_sym_while_statement_repeat1] = STATE(910), + [sym__simple_heredoc_body] = ACTIONS(1948), + [sym__heredoc_body_beginning] = ACTIONS(1948), + [sym_file_descriptor] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), + [anon_sym_PIPE_AMP] = ACTIONS(1948), + [anon_sym_AMP_AMP] = ACTIONS(1948), + [anon_sym_PIPE_PIPE] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_GT] = ACTIONS(3072), + [anon_sym_AMP_GT] = ACTIONS(3069), + [anon_sym_AMP_GT_GT] = ACTIONS(3072), + [anon_sym_LT_AMP] = ACTIONS(3072), + [anon_sym_GT_AMP] = ACTIONS(3072), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(3075), + [anon_sym_BQUOTE] = ACTIONS(1948), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1953), + }, + [911] = { + [sym_file_redirect] = STATE(910), + [sym_heredoc_redirect] = STATE(910), + [sym_heredoc_body] = STATE(930), + [sym_herestring_redirect] = STATE(910), + [aux_sym_while_statement_repeat1] = STATE(910), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), + [anon_sym_PIPE_AMP] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(1944), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1946), + }, + [912] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(3044), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [913] = { + [sym_file_redirect] = STATE(1380), + [sym_heredoc_redirect] = STATE(1380), + [sym_heredoc_body] = STATE(930), + [sym_herestring_redirect] = STATE(1380), + [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(1380), + [aux_sym_command_repeat2] = STATE(493), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), + [anon_sym_PIPE_AMP] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_EQ_TILDE] = ACTIONS(307), + [anon_sym_EQ_EQ] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(823), + [sym__special_characters] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym_raw_string] = ACTIONS(321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), + [anon_sym_BQUOTE] = ACTIONS(1944), + [anon_sym_LT_LPAREN] = ACTIONS(51), + [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(323), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1946), + }, + [914] = { + [sym__simple_heredoc_body] = ACTIONS(3078), + [sym__heredoc_body_beginning] = ACTIONS(3078), + [sym_file_descriptor] = ACTIONS(3078), + [sym__concat] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_EQ_TILDE] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_GT] = ACTIONS(3080), + [anon_sym_AMP_GT_GT] = ACTIONS(3078), + [anon_sym_LT_AMP] = ACTIONS(3078), + [anon_sym_GT_AMP] = ACTIONS(3078), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_LT_LT_DASH] = ACTIONS(3078), + [anon_sym_LT_LT_LT] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), + }, + [915] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [916] = { + [sym_file_redirect] = STATE(1382), + [sym_file_descriptor] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_SEMI_SEMI] = ACTIONS(2373), + [anon_sym_PIPE_AMP] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1197), + [anon_sym_AMP_GT] = ACTIONS(1195), + [anon_sym_AMP_GT_GT] = ACTIONS(1197), + [anon_sym_LT_AMP] = ACTIONS(1197), + [anon_sym_GT_AMP] = ACTIONS(1197), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2375), + }, + [917] = { + [sym__heredoc_body_middle] = ACTIONS(731), + [sym__heredoc_body_end] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + }, + [918] = { + [sym__heredoc_body_middle] = ACTIONS(739), + [sym__heredoc_body_end] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + }, + [919] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(3084), + [sym_comment] = ACTIONS(53), + }, + [920] = { + [sym_subscript] = STATE(1387), + [sym_variable_name] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_AT] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_0] = ACTIONS(3092), + [anon_sym__] = ACTIONS(3092), + }, + [921] = { + [sym_concatenation] = STATE(1390), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1390), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_EQ] = ACTIONS(3096), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3096), + [anon_sym_COLON_QMARK] = ACTIONS(3096), + [anon_sym_COLON_DASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [922] = { + [sym_concatenation] = STATE(1393), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1393), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3104), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3108), + [anon_sym_COLON] = ACTIONS(3104), + [anon_sym_COLON_QMARK] = ACTIONS(3104), + [anon_sym_COLON_DASH] = ACTIONS(3104), + [anon_sym_PERCENT] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [923] = { + [sym_concatenation] = STATE(1396), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1396), + [anon_sym_RBRACE] = ACTIONS(3110), + [anon_sym_EQ] = ACTIONS(3112), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3116), + [anon_sym_COLON] = ACTIONS(3112), + [anon_sym_COLON_QMARK] = ACTIONS(3112), + [anon_sym_COLON_DASH] = ACTIONS(3112), + [anon_sym_PERCENT] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [924] = { + [anon_sym_esac] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_SEMI_SEMI] = ACTIONS(3118), + [anon_sym_PIPE_AMP] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_BQUOTE] = ACTIONS(3118), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_LF] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + }, + [925] = { + [sym_simple_expansion] = STATE(925), + [sym_expansion] = STATE(925), + [aux_sym_heredoc_body_repeat1] = STATE(925), + [sym__heredoc_body_middle] = ACTIONS(3122), + [sym__heredoc_body_end] = ACTIONS(3125), + [anon_sym_DOLLAR] = ACTIONS(3127), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3130), + [sym_comment] = ACTIONS(53), + }, + [926] = { + [aux_sym_concatenation_repeat1] = STATE(929), + [sym__simple_heredoc_body] = ACTIONS(981), + [sym__heredoc_body_beginning] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), + }, + [927] = { + [aux_sym_concatenation_repeat1] = STATE(929), + [sym__simple_heredoc_body] = ACTIONS(985), + [sym__heredoc_body_beginning] = ACTIONS(985), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [928] = { + [sym__simple_heredoc_body] = ACTIONS(985), + [sym__heredoc_body_beginning] = ACTIONS(985), + [sym_file_descriptor] = ACTIONS(985), + [anon_sym_esac] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [929] = { + [aux_sym_concatenation_repeat1] = STATE(1397), + [sym__simple_heredoc_body] = ACTIONS(695), + [sym__heredoc_body_beginning] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [930] = { + [anon_sym_esac] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3133), + [anon_sym_SEMI_SEMI] = ACTIONS(3133), + [anon_sym_PIPE_AMP] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_PIPE_PIPE] = ACTIONS(3133), + [anon_sym_BQUOTE] = ACTIONS(3133), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3135), + }, + [931] = { + [sym_file_redirect] = STATE(491), + [sym_heredoc_redirect] = STATE(491), + [sym_heredoc_body] = STATE(1398), + [sym_herestring_redirect] = STATE(491), + [aux_sym_while_statement_repeat1] = STATE(491), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(3135), + [anon_sym_SEMI_SEMI] = ACTIONS(3133), + [anon_sym_PIPE_AMP] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_PIPE_PIPE] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(311), + [anon_sym_LT_AMP] = ACTIONS(311), + [anon_sym_GT_AMP] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(317), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3135), + }, + [932] = { + [sym__concat] = ACTIONS(3137), + [anon_sym_EQ] = ACTIONS(3139), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [sym_comment] = ACTIONS(53), + }, + [933] = { + [anon_sym_EQ] = ACTIONS(3139), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [sym_comment] = ACTIONS(53), + }, + [934] = { + [aux_sym_concatenation_repeat1] = STATE(934), + [sym__concat] = ACTIONS(2460), + [anon_sym_RBRACK] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + }, + [935] = { + [sym__concat] = ACTIONS(3141), + [anon_sym_EQ] = ACTIONS(3143), + [anon_sym_PLUS_EQ] = ACTIONS(3143), + [sym_comment] = ACTIONS(53), + }, + [936] = { + [anon_sym_EQ] = ACTIONS(3143), + [anon_sym_PLUS_EQ] = ACTIONS(3143), + [sym_comment] = ACTIONS(53), + }, + [937] = { + [sym_string] = STATE(1401), + [sym_simple_expansion] = STATE(1401), + [sym_string_expansion] = STATE(1401), + [sym_expansion] = STATE(1401), + [sym_command_substitution] = STATE(1401), + [sym_process_substitution] = STATE(1401), + [sym__special_characters] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(3145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3145), + }, + [938] = { + [aux_sym_concatenation_repeat1] = STATE(1402), + [sym__concat] = ACTIONS(2018), + [anon_sym_RPAREN] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(695), + }, + [939] = { + [sym__concat] = ACTIONS(699), + [anon_sym_RPAREN] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(699), + }, + [940] = { + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [941] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_DOLLAR] = ACTIONS(3149), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [942] = { + [sym__concat] = ACTIONS(731), + [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), + }, + [943] = { + [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), + }, + [944] = { + [sym__concat] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(739), + }, + [945] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(3151), + [sym_comment] = ACTIONS(53), + }, + [946] = { + [sym_subscript] = STATE(1409), + [sym_variable_name] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_0] = ACTIONS(3159), + [anon_sym__] = ACTIONS(3159), + }, + [947] = { + [sym_concatenation] = STATE(1412), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1412), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_EQ] = ACTIONS(3163), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3165), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_COLON_QMARK] = ACTIONS(3163), + [anon_sym_COLON_DASH] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [948] = { + [sym_concatenation] = STATE(1415), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1415), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_EQ] = ACTIONS(3171), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_COLON] = ACTIONS(3171), + [anon_sym_COLON_QMARK] = ACTIONS(3171), + [anon_sym_COLON_DASH] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [949] = { + [sym_concatenation] = STATE(1418), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1418), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_EQ] = ACTIONS(3179), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_COLON] = ACTIONS(3179), + [anon_sym_COLON_QMARK] = ACTIONS(3179), + [anon_sym_COLON_DASH] = ACTIONS(3179), + [anon_sym_PERCENT] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [950] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3185), + [anon_sym_SEMI_SEMI] = ACTIONS(3187), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_LF] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + }, + [951] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3185), + [anon_sym_SEMI_SEMI] = ACTIONS(3187), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_LF] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), }, [952] = { [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_for_statement] = STATE(1421), + [sym_c_style_for_statement] = STATE(1421), + [sym_while_statement] = STATE(1421), + [sym_if_statement] = STATE(1421), + [sym_case_statement] = STATE(1421), + [sym_function_definition] = STATE(1421), + [sym_subshell] = STATE(1421), + [sym_pipeline] = STATE(1421), + [sym_list] = STATE(1421), + [sym_negated_command] = STATE(1421), + [sym_test_command] = STATE(1421), + [sym_declaration_command] = STATE(1421), + [sym_unset_command] = STATE(1421), + [sym_command] = STATE(1421), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1402), + [sym_variable_assignment] = STATE(1422), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -32709,808 +33792,1017 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [953] = { - [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(3159), - [anon_sym_SEMI] = ACTIONS(3159), - [anon_sym_LF] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(3191), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(3185), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LF] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3193), }, [954] = { - [sym_concatenation] = STATE(954), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(3191), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(3185), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LF] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3193), + }, + [955] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1424), + [sym_c_style_for_statement] = STATE(1424), + [sym_while_statement] = STATE(1424), + [sym_if_statement] = STATE(1424), + [sym_case_statement] = STATE(1424), + [sym_function_definition] = STATE(1424), + [sym_subshell] = STATE(1424), + [sym_pipeline] = STATE(1424), + [sym_list] = STATE(1424), + [sym_negated_command] = STATE(1424), + [sym_test_command] = STATE(1424), + [sym_declaration_command] = STATE(1424), + [sym_unset_command] = STATE(1424), + [sym_command] = STATE(1424), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1425), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [956] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_SEMI_SEMI] = ACTIONS(3197), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_LF] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3199), + }, + [957] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_SEMI_SEMI] = ACTIONS(3197), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_LF] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3199), + }, + [958] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1428), + [sym_c_style_for_statement] = STATE(1428), + [sym_while_statement] = STATE(1428), + [sym_if_statement] = STATE(1428), + [sym_case_statement] = STATE(1428), + [sym_function_definition] = STATE(1428), + [sym_subshell] = STATE(1428), + [sym_pipeline] = STATE(1428), + [sym_list] = STATE(1428), + [sym_negated_command] = STATE(1428), + [sym_test_command] = STATE(1428), + [sym_declaration_command] = STATE(1428), + [sym_unset_command] = STATE(1428), + [sym_command] = STATE(1428), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1429), + [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), + }, + [959] = { + [sym_file_descriptor] = ACTIONS(3201), + [sym_variable_name] = ACTIONS(3201), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_RPAREN] = ACTIONS(3201), + [anon_sym_SEMI_SEMI] = ACTIONS(3201), + [anon_sym_PIPE_AMP] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_GT_GT] = ACTIONS(3201), + [anon_sym_AMP_GT] = ACTIONS(3203), + [anon_sym_AMP_GT_GT] = ACTIONS(3201), + [anon_sym_LT_AMP] = ACTIONS(3201), + [anon_sym_GT_AMP] = ACTIONS(3201), + [sym__special_characters] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [anon_sym_DOLLAR] = ACTIONS(3203), + [sym_raw_string] = ACTIONS(3201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3201), + [anon_sym_BQUOTE] = ACTIONS(3201), + [anon_sym_LT_LPAREN] = ACTIONS(3201), + [anon_sym_GT_LPAREN] = ACTIONS(3201), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_LF] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3203), + }, + [960] = { + [sym_concatenation] = STATE(960), [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), - [sym_word] = ACTIONS(3172), - }, - [955] = { - [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(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1650), - }, - [956] = { - [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(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1650), - }, - [957] = { - [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] = { - [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] = { - [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] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(3198), + [aux_sym_for_statement_repeat1] = STATE(960), + [anon_sym_RPAREN] = ACTIONS(3205), + [sym__special_characters] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_DOLLAR] = ACTIONS(3213), + [sym_raw_string] = ACTIONS(3216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3222), + [anon_sym_BQUOTE] = ACTIONS(3225), + [anon_sym_LT_LPAREN] = ACTIONS(3228), + [anon_sym_GT_LPAREN] = ACTIONS(3228), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3216), }, [961] = { - [sym_concatenation] = STATE(1411), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1411), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3202), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_COLON] = ACTIONS(3202), - [anon_sym_COLON_QMARK] = ACTIONS(3202), - [anon_sym_COLON_DASH] = ACTIONS(3202), - [anon_sym_PERCENT] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1664), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [962] = { - [sym_concatenation] = STATE(1414), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1414), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_EQ] = ACTIONS(3210), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_COLON] = ACTIONS(3210), - [anon_sym_COLON_QMARK] = ACTIONS(3210), - [anon_sym_COLON_DASH] = ACTIONS(3210), - [anon_sym_PERCENT] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(962), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(3231), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [963] = { - [sym_concatenation] = STATE(1416), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1416), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3216), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3218), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_COLON] = ACTIONS(3216), - [anon_sym_COLON_QMARK] = ACTIONS(3216), - [anon_sym_COLON_DASH] = ACTIONS(3216), - [anon_sym_PERCENT] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(1671), + [sym__concat] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1673), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), }, [964] = { - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [sym_variable_name] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1774), - [anon_sym_AMP_GT] = ACTIONS(1774), - [anon_sym_AMP_GT_GT] = ACTIONS(1774), - [anon_sym_LT_AMP] = ACTIONS(1774), - [anon_sym_GT_AMP] = ACTIONS(1774), - [sym__special_characters] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1774), - [anon_sym_GT_LPAREN] = ACTIONS(1774), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [965] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3222), + [sym_concatenation] = STATE(1434), + [sym_string] = STATE(1433), + [sym_simple_expansion] = STATE(1433), + [sym_string_expansion] = STATE(1433), + [sym_expansion] = STATE(1433), + [sym_command_substitution] = STATE(1433), + [sym_process_substitution] = STATE(1433), + [anon_sym_RBRACE] = ACTIONS(3236), + [sym__special_characters] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3240), }, [966] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(3242), + [sym_comment] = ACTIONS(53), }, [967] = { - [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), - [sym_word] = ACTIONS(1818), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_LF] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1818), + [sym_concatenation] = STATE(1438), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1438), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3246), + [anon_sym_COLON_QMARK] = ACTIONS(3246), + [anon_sym_COLON_DASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [968] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3226), + [sym_concatenation] = STATE(1441), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1441), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_COLON] = ACTIONS(3254), + [anon_sym_COLON_QMARK] = ACTIONS(3254), + [anon_sym_COLON_DASH] = ACTIONS(3254), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [969] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(1443), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1443), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3260), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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_word] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_LF] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1826), + [sym_file_descriptor] = ACTIONS(1788), + [sym__concat] = ACTIONS(1788), + [sym_variable_name] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_GT_GT] = ACTIONS(1788), + [anon_sym_AMP_GT] = ACTIONS(1790), + [anon_sym_AMP_GT_GT] = ACTIONS(1788), + [anon_sym_LT_AMP] = ACTIONS(1788), + [anon_sym_GT_AMP] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), }, [971] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3230), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3266), }, [972] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [973] = { - [sym_file_descriptor] = ACTIONS(1830), - [sym__concat] = ACTIONS(1830), - [sym_variable_name] = ACTIONS(1830), - [anon_sym_esac] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [sym_variable_name] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), [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_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1834), [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), + [anon_sym_DOLLAR] = ACTIONS(1834), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), }, [974] = { - [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), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3270), }, [975] = { - [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), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LF] = ACTIONS(3238), - [anon_sym_AMP] = ACTIONS(3236), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [976] = { - [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), + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1840), + [anon_sym_LT_AMP] = ACTIONS(1840), + [anon_sym_GT_AMP] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), }, [977] = { - [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), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3274), }, [978] = { - [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), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LF] = ACTIONS(3242), - [anon_sym_AMP] = ACTIONS(3240), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [979] = { - [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), + [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_SEMI_SEMI] = 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(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), }, [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_word] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_LF] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1866), + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [981] = { - [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_SEMI_SEMI] = ACTIONS(3278), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_LF] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3280), }, [982] = { - [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_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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_SEMI_SEMI] = ACTIONS(3278), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_LF] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3280), + }, + [983] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(3276), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [984] = { - [sym_do_group] = STATE(1428), - [sym_compound_statement] = STATE(1428), - [anon_sym_do] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(3282), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(3276), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_LF] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(3284), }, [985] = { - [sym__expression] = STATE(1429), - [sym_binary_expression] = STATE(1429), - [sym_unary_expression] = STATE(1429), - [sym_parenthesized_expression] = STATE(1429), - [sym_concatenation] = STATE(1429), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(3282), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(3276), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_LF] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(3284), + }, + [986] = { + [sym_file_descriptor] = ACTIONS(1878), + [sym__concat] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + }, + [987] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [988] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_SEMI_SEMI] = ACTIONS(3288), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_LF] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3290), + }, + [989] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_SEMI_SEMI] = ACTIONS(3288), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_LF] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3290), + }, + [990] = { + [sym_do_group] = STATE(1455), + [sym_compound_statement] = STATE(1455), + [anon_sym_do] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(3292), + [sym_comment] = ACTIONS(53), + }, + [991] = { + [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(278), [sym_simple_expansion] = STATE(278), [sym_string_expansion] = STATE(278), @@ -33518,93 +34810,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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_BANG] = ACTIONS(499), + [sym__special_characters] = ACTIONS(501), [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_DOLLAR] = ACTIONS(143), - [sym_raw_string] = ACTIONS(487), + [sym_raw_string] = ACTIONS(503), [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), + [sym_word] = ACTIONS(505), + [sym_test_operator] = ACTIONS(507), }, - [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), + [992] = { + [sym__expression] = STATE(1457), + [sym_binary_expression] = STATE(1457), + [sym_unary_expression] = STATE(1457), + [sym_parenthesized_expression] = STATE(1457), + [sym_concatenation] = STATE(1457), + [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), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2112), + [sym__special_characters] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_DOLLAR] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), + [anon_sym_BQUOTE] = ACTIONS(2126), + [anon_sym_LT_LPAREN] = ACTIONS(2128), + [anon_sym_GT_LPAREN] = ACTIONS(2128), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2109), - [sym_test_operator] = ACTIONS(2111), + [sym_word] = ACTIONS(2130), + [sym_test_operator] = ACTIONS(2132), }, - [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(495), - }, - [988] = { - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [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), - }, - [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(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), + [993] = { + [aux_sym_concatenation_repeat1] = STATE(1459), + [sym__concat] = ACTIONS(3294), [anon_sym_RPAREN_RPAREN] = ACTIONS(511), [anon_sym_AMP_AMP] = ACTIONS(511), [anon_sym_PIPE_PIPE] = ACTIONS(511), @@ -33617,39 +34866,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_test_operator] = ACTIONS(511), }, - [991] = { - [sym_subscript] = STATE(1443), - [sym_variable_name] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_POUND] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3272), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_0] = ACTIONS(3276), - [anon_sym__] = ACTIONS(3276), + [994] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(1462), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_DOLLAR] = ACTIONS(3298), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, - [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), + [995] = { + [sym_string] = STATE(1464), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_DOLLAR] = ACTIONS(3300), + [sym_raw_string] = ACTIONS(3302), + [anon_sym_POUND] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_0] = ACTIONS(3306), + [anon_sym__] = ACTIONS(3306), + }, + [996] = { + [aux_sym_concatenation_repeat1] = STATE(1459), + [sym__concat] = ACTIONS(3294), + [anon_sym_RPAREN_RPAREN] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(527), + [anon_sym_PIPE_PIPE] = ACTIONS(527), + [anon_sym_EQ_TILDE] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(527), + [anon_sym_EQ] = ACTIONS(529), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_BANG_EQ] = ACTIONS(527), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(527), + }, + [997] = { + [sym_subscript] = STATE(1470), + [sym_variable_name] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3312), + [anon_sym_POUND] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3312), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3314), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_0] = ACTIONS(3316), + [anon_sym__] = ACTIONS(3316), + }, + [998] = { + [sym__terminated_statement] = STATE(1473), + [sym_for_statement] = STATE(1471), + [sym_c_style_for_statement] = STATE(1471), + [sym_while_statement] = STATE(1471), + [sym_if_statement] = STATE(1471), + [sym_case_statement] = STATE(1471), + [sym_function_definition] = STATE(1471), + [sym_subshell] = STATE(1471), + [sym_pipeline] = STATE(1471), + [sym_list] = STATE(1471), + [sym_negated_command] = STATE(1471), + [sym_test_command] = STATE(1471), + [sym_declaration_command] = STATE(1471), + [sym_unset_command] = STATE(1471), + [sym_command] = STATE(1471), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1445), + [sym_variable_assignment] = STATE(1472), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -33659,7 +34951,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(62), [sym_command_substitution] = STATE(62), [sym_process_substitution] = STATE(62), - [aux_sym_program_repeat1] = STATE(1446), + [aux_sym_program_repeat1] = STATE(1473), [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), @@ -33698,24 +34990,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [999] = { + [sym__terminated_statement] = STATE(1476), + [sym_for_statement] = STATE(1474), + [sym_c_style_for_statement] = STATE(1474), + [sym_while_statement] = STATE(1474), + [sym_if_statement] = STATE(1474), + [sym_case_statement] = STATE(1474), + [sym_function_definition] = STATE(1474), + [sym_subshell] = STATE(1474), + [sym_pipeline] = STATE(1474), + [sym_list] = STATE(1474), + [sym_negated_command] = STATE(1474), + [sym_test_command] = STATE(1474), + [sym_declaration_command] = STATE(1474), + [sym_unset_command] = STATE(1474), + [sym_command] = STATE(1474), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(1448), + [sym_variable_assignment] = STATE(1475), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -33725,26 +35017,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1449), + [aux_sym_program_repeat1] = STATE(1476), [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_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -33762,26 +35054,26 @@ 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(277), + [sym_word] = ACTIONS(281), }, - [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), + [1000] = { + [sym__terminated_statement] = STATE(1479), + [sym_for_statement] = STATE(1477), + [sym_c_style_for_statement] = STATE(1477), + [sym_while_statement] = STATE(1477), + [sym_if_statement] = STATE(1477), + [sym_case_statement] = STATE(1477), + [sym_function_definition] = STATE(1477), + [sym_subshell] = STATE(1477), + [sym_pipeline] = STATE(1477), + [sym_list] = STATE(1477), + [sym_negated_command] = STATE(1477), + [sym_test_command] = STATE(1477), + [sym_declaration_command] = STATE(1477), + [sym_unset_command] = STATE(1477), + [sym_command] = STATE(1477), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1451), + [sym_variable_assignment] = STATE(1478), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -33791,7 +35083,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(62), [sym_command_substitution] = STATE(62), [sym_process_substitution] = STATE(62), - [aux_sym_program_repeat1] = STATE(1452), + [aux_sym_program_repeat1] = STATE(1479), [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), @@ -33830,986 +35122,1359 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_PIPE_PIPE] = ACTIONS(3320), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_GT] = ACTIONS(3320), + [anon_sym_BANG_EQ] = ACTIONS(3320), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3320), }, [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__expression] = STATE(1483), + [sym_binary_expression] = STATE(1483), + [sym_unary_expression] = STATE(1483), + [sym_parenthesized_expression] = STATE(1483), + [sym_concatenation] = STATE(1483), + [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), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2112), + [sym__special_characters] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_DOLLAR] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), + [anon_sym_BQUOTE] = ACTIONS(2126), + [anon_sym_LT_LPAREN] = ACTIONS(2128), + [anon_sym_GT_LPAREN] = ACTIONS(2128), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3295), + [sym_word] = ACTIONS(2130), + [sym_test_operator] = ACTIONS(2132), }, [1003] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(3297), + [anon_sym_SEMI_SEMI] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_EQ_TILDE] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2454), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_LF] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2456), }, [1004] = { - [sym_concatenation] = STATE(1465), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1465), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_EQ] = ACTIONS(3301), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3305), - [anon_sym_COLON] = ACTIONS(3301), - [anon_sym_COLON_QMARK] = ACTIONS(3301), - [anon_sym_COLON_DASH] = ACTIONS(3301), - [anon_sym_PERCENT] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(3301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(1664), + [anon_sym_esac] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1664), + [anon_sym_EQ_EQ] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG_EQ] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [1005] = { - [sym_concatenation] = STATE(1468), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1468), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3309), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3313), - [anon_sym_COLON] = ACTIONS(3309), - [anon_sym_COLON_QMARK] = ACTIONS(3309), - [anon_sym_COLON_DASH] = ACTIONS(3309), - [anon_sym_PERCENT] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1005), + [sym__concat] = ACTIONS(3326), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1664), + [anon_sym_EQ_EQ] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG_EQ] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [1006] = { - [sym_concatenation] = STATE(1470), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1470), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_EQ] = ACTIONS(3315), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3317), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_COLON] = ACTIONS(3315), - [anon_sym_COLON_QMARK] = ACTIONS(3315), - [anon_sym_COLON_DASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), }, [1007] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_EQ_TILDE] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1774), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_BANG_EQ] = ACTIONS(1774), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(3329), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [1008] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3321), + [sym_concatenation] = STATE(1488), + [sym_string] = STATE(1487), + [sym_simple_expansion] = STATE(1487), + [sym_string_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1487), + [sym_process_substitution] = STATE(1487), + [anon_sym_RBRACE] = ACTIONS(3331), + [sym__special_characters] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3335), }, [1009] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(3337), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(1492), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1492), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_EQ] = ACTIONS(3341), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1011] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3325), + [sym_concatenation] = STATE(1495), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1495), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_EQ] = ACTIONS(3349), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3349), + [anon_sym_COLON_QMARK] = ACTIONS(3349), + [anon_sym_COLON_DASH] = ACTIONS(3349), + [anon_sym_PERCENT] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1012] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(1497), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1497), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_EQ] = ACTIONS(3355), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_DASH] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(1788), + [anon_sym_esac] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [anon_sym_EQ_TILDE] = ACTIONS(1788), + [anon_sym_EQ_EQ] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1788), + [anon_sym_GT] = ACTIONS(1788), + [anon_sym_BANG_EQ] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), }, [1014] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3329), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3361), }, [1015] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1016] = { - [sym__concat] = ACTIONS(1830), + [sym__concat] = ACTIONS(1832), [anon_sym_esac] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), [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_EQ] = ACTIONS(1834), [anon_sym_LT] = ACTIONS(1832), [anon_sym_GT] = ACTIONS(1832), [anon_sym_BANG_EQ] = ACTIONS(1832), - [sym_comment] = ACTIONS(179), + [sym_comment] = ACTIONS(53), [sym_test_operator] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_LF] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), }, [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), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3365), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_EQ_TILDE] = ACTIONS(1840), + [anon_sym_EQ_EQ] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_GT] = ACTIONS(1840), + [anon_sym_BANG_EQ] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), }, [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), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3369), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(1846), + [anon_sym_esac] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = 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(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), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), }, [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), + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [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), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_SEMI_SEMI] = ACTIONS(3373), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_LF] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_SEMI_SEMI] = ACTIONS(3373), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_LF] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + }, + [1026] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(3371), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [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), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(3377), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_LF] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3379), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(3377), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(3371), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_LF] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3379), }, [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), + [sym__concat] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_EQ_TILDE] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), }, [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), + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3381), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [1031] = { - [sym_do_group] = STATE(1483), - [anon_sym_do] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3381), + [anon_sym_SEMI_SEMI] = ACTIONS(3383), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), [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), + [1032] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3381), + [anon_sym_SEMI_SEMI] = ACTIONS(3383), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), - [sym_word] = ACTIONS(936), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_LF] = ACTIONS(3383), + [anon_sym_AMP] = ACTIONS(3385), }, - [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), + [1033] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1079), + [anon_sym_EQ_TILDE] = ACTIONS(1081), + [anon_sym_EQ_EQ] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(1079), + [anon_sym_BANG_EQ] = ACTIONS(1079), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1079), [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_LF] = ACTIONS(3391), + [anon_sym_LF] = ACTIONS(3387), [anon_sym_AMP] = ACTIONS(3389), }, - [1038] = { - [anon_sym_then] = ACTIONS(3393), + [1034] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_PIPE_PIPE] = ACTIONS(2521), + [anon_sym_EQ_TILDE] = ACTIONS(2521), + [anon_sym_EQ_EQ] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), + [anon_sym_BANG_EQ] = ACTIONS(2521), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_LF] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2523), + }, + [1035] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_PIPE_PIPE] = ACTIONS(2521), + [anon_sym_EQ_TILDE] = ACTIONS(2521), + [anon_sym_EQ_EQ] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), + [anon_sym_BANG_EQ] = ACTIONS(2521), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_LF] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2523), + }, + [1036] = { + [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), + [sym__special_characters] = ACTIONS(3391), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1091), + [sym_raw_string] = ACTIONS(3391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1095), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1097), + [anon_sym_BQUOTE] = ACTIONS(1099), + [anon_sym_LT_LPAREN] = ACTIONS(1101), + [anon_sym_GT_LPAREN] = ACTIONS(1101), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3391), + }, + [1037] = { + [aux_sym_concatenation_repeat1] = STATE(1510), + [sym__concat] = ACTIONS(2214), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + }, + [1038] = { + [sym__concat] = ACTIONS(699), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(699), }, [1039] = { - [sym__terminated_statement] = STATE(1486), + [anon_sym_DQUOTE] = ACTIONS(3393), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [1040] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(3393), + [anon_sym_DOLLAR] = ACTIONS(3395), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [1041] = { + [sym__concat] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), + }, + [1042] = { + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(735), + }, + [1043] = { + [sym__concat] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(739), + }, + [1044] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(3397), + [sym_comment] = ACTIONS(53), + }, + [1045] = { + [sym_subscript] = STATE(1517), + [sym_variable_name] = ACTIONS(3399), + [anon_sym_DOLLAR] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_0] = ACTIONS(3405), + [anon_sym__] = ACTIONS(3405), + }, + [1046] = { + [sym_concatenation] = STATE(1520), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1520), + [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_EQ] = ACTIONS(3409), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_COLON] = ACTIONS(3409), + [anon_sym_COLON_QMARK] = ACTIONS(3409), + [anon_sym_COLON_DASH] = ACTIONS(3409), + [anon_sym_PERCENT] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1047] = { + [sym_concatenation] = STATE(1523), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1523), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_EQ] = ACTIONS(3417), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_DASH] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1048] = { + [sym_concatenation] = STATE(1526), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1526), + [anon_sym_RBRACE] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3429), + [anon_sym_COLON] = ACTIONS(3425), + [anon_sym_COLON_QMARK] = ACTIONS(3425), + [anon_sym_COLON_DASH] = ACTIONS(3425), + [anon_sym_PERCENT] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1049] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3433), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3435), + }, + [1050] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3433), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3435), + }, + [1051] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1529), + [sym_c_style_for_statement] = STATE(1529), + [sym_while_statement] = STATE(1529), + [sym_if_statement] = STATE(1529), + [sym_case_statement] = STATE(1529), + [sym_function_definition] = STATE(1529), + [sym_subshell] = STATE(1529), + [sym_pipeline] = STATE(1529), + [sym_list] = STATE(1529), + [sym_negated_command] = STATE(1529), + [sym_test_command] = STATE(1529), + [sym_declaration_command] = STATE(1529), + [sym_unset_command] = STATE(1529), + [sym_command] = STATE(1529), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1530), + [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), + }, + [1052] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(3437), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(3431), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_LF] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3439), + }, + [1053] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(3437), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(3431), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_LF] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3439), + }, + [1054] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1532), + [sym_c_style_for_statement] = STATE(1532), + [sym_while_statement] = STATE(1532), + [sym_if_statement] = STATE(1532), + [sym_case_statement] = STATE(1532), + [sym_function_definition] = STATE(1532), + [sym_subshell] = STATE(1532), + [sym_pipeline] = STATE(1532), + [sym_list] = STATE(1532), + [sym_negated_command] = STATE(1532), + [sym_test_command] = STATE(1532), + [sym_declaration_command] = STATE(1532), + [sym_unset_command] = STATE(1532), + [sym_command] = STATE(1532), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1533), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [1055] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3441), + [anon_sym_SEMI_SEMI] = ACTIONS(3443), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_LF] = ACTIONS(3443), + [anon_sym_AMP] = ACTIONS(3445), + }, + [1056] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3441), + [anon_sym_SEMI_SEMI] = ACTIONS(3443), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_LF] = ACTIONS(3443), + [anon_sym_AMP] = ACTIONS(3445), + }, + [1057] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1536), + [sym_c_style_for_statement] = STATE(1536), + [sym_while_statement] = STATE(1536), + [sym_if_statement] = STATE(1536), + [sym_case_statement] = STATE(1536), + [sym_function_definition] = STATE(1536), + [sym_subshell] = STATE(1536), + [sym_pipeline] = STATE(1536), + [sym_list] = STATE(1536), + [sym_negated_command] = STATE(1536), + [sym_test_command] = STATE(1536), + [sym_declaration_command] = STATE(1536), + [sym_unset_command] = STATE(1536), + [sym_command] = STATE(1536), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1537), + [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), + }, + [1058] = { + [sym_do_group] = STATE(1538), + [anon_sym_do] = ACTIONS(1103), + [sym_comment] = ACTIONS(53), + }, + [1059] = { + [sym_concatenation] = STATE(1059), + [sym_string] = STATE(565), + [sym_simple_expansion] = STATE(565), + [sym_string_expansion] = STATE(565), + [sym_expansion] = STATE(565), + [sym_command_substitution] = STATE(565), + [sym_process_substitution] = STATE(565), + [aux_sym_for_statement_repeat1] = STATE(1059), + [anon_sym_SEMI_SEMI] = ACTIONS(3205), + [sym__special_characters] = ACTIONS(3447), + [anon_sym_DQUOTE] = ACTIONS(3450), + [anon_sym_DOLLAR] = ACTIONS(3453), + [sym_raw_string] = ACTIONS(3456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3459), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3462), + [anon_sym_BQUOTE] = ACTIONS(3465), + [anon_sym_LT_LPAREN] = ACTIONS(3468), + [anon_sym_GT_LPAREN] = ACTIONS(3468), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3471), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3205), + }, + [1060] = { + [anon_sym_esac] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_SEMI_SEMI] = ACTIONS(2250), + [anon_sym_PIPE_AMP] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym_LF] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2252), + }, + [1061] = { + [sym__terminated_statement] = STATE(1063), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -34835,14 +36500,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1486), + [aux_sym_program_repeat1] = STATE(1063), [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(3476), [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), @@ -34875,26 +36540,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [1062] = { + [sym__simple_heredoc_body] = ACTIONS(3478), + [sym__heredoc_body_beginning] = ACTIONS(3478), + [sym_file_descriptor] = ACTIONS(3478), + [anon_sym_esac] = ACTIONS(3478), + [anon_sym_PIPE] = ACTIONS(3480), + [anon_sym_RPAREN] = ACTIONS(3478), + [anon_sym_SEMI_SEMI] = ACTIONS(3478), + [anon_sym_PIPE_AMP] = ACTIONS(3478), + [anon_sym_AMP_AMP] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_GT] = ACTIONS(3480), + [anon_sym_GT_GT] = ACTIONS(3478), + [anon_sym_AMP_GT] = ACTIONS(3480), + [anon_sym_AMP_GT_GT] = ACTIONS(3478), + [anon_sym_LT_AMP] = ACTIONS(3478), + [anon_sym_GT_AMP] = ACTIONS(3478), + [anon_sym_LT_LT] = ACTIONS(3480), + [anon_sym_LT_LT_DASH] = ACTIONS(3478), + [anon_sym_LT_LT_LT] = ACTIONS(3478), + [anon_sym_BQUOTE] = ACTIONS(3478), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_LF] = ACTIONS(3478), + [anon_sym_AMP] = ACTIONS(3480), }, - [1042] = { - [sym__terminated_statement] = STATE(1042), + [1063] = { + [sym__terminated_statement] = STATE(1063), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -34920,807 +36594,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1042), + [aux_sym_program_repeat1] = STATE(1063), [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_file_descriptor] = ACTIONS(891), + [sym_variable_name] = ACTIONS(894), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(902), + [anon_sym_done] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(905), + [anon_sym_case] = ACTIONS(908), + [anon_sym_function] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(923), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_typeset] = ACTIONS(926), + [anon_sym_export] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_local] = ACTIONS(926), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(932), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(932), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_AMP] = ACTIONS(935), + [sym__special_characters] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), [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(1508), - [sym_string] = STATE(1507), - [sym_simple_expansion] = STATE(1507), - [sym_string_expansion] = STATE(1507), - [sym_expansion] = STATE(1507), - [sym_command_substitution] = STATE(1507), - [sym_process_substitution] = STATE(1507), - [anon_sym_RBRACE] = ACTIONS(3432), - [sym__special_characters] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3436), - [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(3436), - }, - [1062] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [sym__special_characters] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym_raw_string] = ACTIONS(2870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [anon_sym_LT_LPAREN] = ACTIONS(2870), - [anon_sym_GT_LPAREN] = ACTIONS(2870), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - }, - [1063] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3438), + [sym_word] = ACTIONS(962), }, [1064] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3440), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(3484), + [anon_sym_PIPE] = ACTIONS(3486), + [anon_sym_RPAREN] = ACTIONS(3484), + [anon_sym_SEMI_SEMI] = ACTIONS(3484), + [anon_sym_PIPE_AMP] = ACTIONS(3484), + [anon_sym_AMP_AMP] = ACTIONS(3484), + [anon_sym_PIPE_PIPE] = ACTIONS(3484), + [anon_sym_BQUOTE] = ACTIONS(3484), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_LF] = ACTIONS(3484), + [anon_sym_AMP] = ACTIONS(3486), }, [1065] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_in] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [sym__special_characters] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [anon_sym_LT_LPAREN] = ACTIONS(2878), - [anon_sym_GT_LPAREN] = ACTIONS(2878), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_then] = ACTIONS(3488), + [sym_comment] = ACTIONS(53), }, [1066] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3442), - }, - [1067] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1068] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3446), - }, - [1069] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3432), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1070] = { - [sym_concatenation] = STATE(1515), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1515), - [anon_sym_RBRACE] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(3450), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3450), - [anon_sym_COLON_QMARK] = ACTIONS(3450), - [anon_sym_COLON_DASH] = ACTIONS(3450), - [anon_sym_PERCENT] = ACTIONS(3450), - [anon_sym_DASH] = ACTIONS(3450), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1071] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_in] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2950), - [sym__special_characters] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [anon_sym_LT_LPAREN] = ACTIONS(2950), - [anon_sym_GT_LPAREN] = ACTIONS(2950), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - }, - [1072] = { - [sym_concatenation] = STATE(1517), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1517), - [anon_sym_RBRACE] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3456), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1519), - [anon_sym_RBRACE] = ACTIONS(3460), - [anon_sym_EQ] = ACTIONS(3462), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3464), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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__terminated_statement] = STATE(1541), + [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(614), + [sym_variable_assignment] = STATE(28), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -35730,286 +36679,1127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1083), + [aux_sym_program_repeat1] = STATE(1541), [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_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(3490), + [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(936), + [sym_word] = ACTIONS(55), + }, + [1067] = { + [anon_sym_esac] = ACTIONS(3492), + [anon_sym_PIPE] = ACTIONS(3494), + [anon_sym_RPAREN] = ACTIONS(3492), + [anon_sym_SEMI_SEMI] = ACTIONS(3492), + [anon_sym_PIPE_AMP] = ACTIONS(3492), + [anon_sym_AMP_AMP] = ACTIONS(3492), + [anon_sym_PIPE_PIPE] = ACTIONS(3492), + [anon_sym_BQUOTE] = ACTIONS(3492), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_LF] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3494), + }, + [1068] = { + [anon_sym_fi] = ACTIONS(3496), + [sym_comment] = ACTIONS(53), + }, + [1069] = { + [sym__terminated_statement] = STATE(1069), + [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(1069), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(891), + [sym_variable_name] = ACTIONS(894), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(902), + [anon_sym_if] = ACTIONS(905), + [anon_sym_fi] = ACTIONS(3482), + [anon_sym_elif] = ACTIONS(3482), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_case] = ACTIONS(908), + [anon_sym_function] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(923), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_typeset] = ACTIONS(926), + [anon_sym_export] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_local] = ACTIONS(926), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(932), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(932), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_AMP] = ACTIONS(935), + [sym__special_characters] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(962), + }, + [1070] = { + [sym_elif_clause] = STATE(580), + [sym_else_clause] = STATE(1543), + [aux_sym_if_statement_repeat1] = STATE(1071), + [anon_sym_fi] = ACTIONS(3496), + [anon_sym_elif] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2274), + [sym_comment] = ACTIONS(53), + }, + [1071] = { + [sym_elif_clause] = STATE(580), + [aux_sym_if_statement_repeat1] = STATE(1071), + [anon_sym_fi] = ACTIONS(3498), + [anon_sym_elif] = ACTIONS(3500), + [anon_sym_else] = ACTIONS(3498), + [sym_comment] = ACTIONS(53), + }, + [1072] = { + [anon_sym_esac] = ACTIONS(3503), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(3503), + [anon_sym_SEMI_SEMI] = ACTIONS(3503), + [anon_sym_PIPE_AMP] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_BQUOTE] = ACTIONS(3503), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3505), + [anon_sym_LF] = ACTIONS(3503), + [anon_sym_AMP] = ACTIONS(3505), + }, + [1073] = { + [aux_sym_case_item_repeat1] = STATE(1546), + [aux_sym_concatenation_repeat1] = STATE(1547), + [sym__concat] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(3509), + [sym_comment] = ACTIONS(53), + }, + [1074] = { + [aux_sym_case_item_repeat1] = STATE(1549), + [aux_sym_concatenation_repeat1] = STATE(1547), + [sym__concat] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(3511), + [sym_comment] = ACTIONS(53), + }, + [1075] = { + [anon_sym_esac] = ACTIONS(3513), + [sym_comment] = ACTIONS(53), + }, + [1076] = { + [aux_sym_case_item_repeat1] = STATE(1549), + [anon_sym_PIPE] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(3511), + [sym_comment] = ACTIONS(53), + }, + [1077] = { + [sym_case_item] = STATE(1552), + [sym_last_case_item] = STATE(1551), + [sym_concatenation] = STATE(1076), + [sym_string] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_command_substitution] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [aux_sym_case_statement_repeat1] = STATE(1552), + [sym__special_characters] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2280), + [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(2280), + }, + [1078] = { + [sym_case_item] = STATE(1554), + [sym_last_case_item] = STATE(1551), + [sym_concatenation] = STATE(1076), + [sym_string] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_command_substitution] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [aux_sym_case_statement_repeat1] = STATE(1554), + [anon_sym_esac] = ACTIONS(3515), + [sym__special_characters] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2280), + [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(2282), + }, + [1079] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_in] = ACTIONS(2855), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2855), + }, + [1080] = { + [anon_sym_esac] = ACTIONS(3517), + [anon_sym_PIPE] = ACTIONS(3519), + [anon_sym_RPAREN] = ACTIONS(3517), + [anon_sym_SEMI_SEMI] = ACTIONS(3517), + [anon_sym_PIPE_AMP] = ACTIONS(3517), + [anon_sym_AMP_AMP] = ACTIONS(3517), + [anon_sym_PIPE_PIPE] = ACTIONS(3517), + [anon_sym_BQUOTE] = ACTIONS(3517), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3519), + [anon_sym_LF] = ACTIONS(3517), + [anon_sym_AMP] = ACTIONS(3519), + }, + [1081] = { + [anon_sym_esac] = ACTIONS(3521), + [sym_comment] = ACTIONS(53), + }, + [1082] = { + [sym_case_item] = STATE(1552), + [sym_last_case_item] = STATE(1556), + [sym_concatenation] = STATE(1076), + [sym_string] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_command_substitution] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [aux_sym_case_statement_repeat1] = STATE(1552), + [sym__special_characters] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2280), + [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(2280), + }, + [1083] = { + [sym_case_item] = STATE(1558), + [sym_last_case_item] = STATE(1556), + [sym_concatenation] = STATE(1076), + [sym_string] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_command_substitution] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [aux_sym_case_statement_repeat1] = STATE(1558), + [anon_sym_esac] = ACTIONS(3523), + [sym__special_characters] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2280), + [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(2282), }, [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__concat] = ACTIONS(2869), + [anon_sym_in] = ACTIONS(2869), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3525), + [sym_comment] = ACTIONS(53), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3527), + [sym_comment] = ACTIONS(53), }, [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), + [anon_sym_RBRACE] = ACTIONS(3527), + [sym_comment] = ACTIONS(53), }, [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), + [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(3527), + [sym__special_characters] = ACTIONS(3529), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3531), }, [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), + [sym__concat] = ACTIONS(2905), + [anon_sym_in] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2905), }, [1090] = { - [sym_compound_statement] = STATE(1528), - [anon_sym_LBRACE] = ACTIONS(435), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3533), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3535), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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__concat] = ACTIONS(2913), + [anon_sym_in] = ACTIONS(2913), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2913), }, [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), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3537), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3541), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1097] = { - [aux_sym_concatenation_repeat1] = STATE(626), - [sym__concat] = ACTIONS(565), - [sym_variable_name] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(999), + [sym_concatenation] = STATE(1570), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1570), + [anon_sym_RBRACE] = ACTIONS(3543), + [anon_sym_EQ] = ACTIONS(3545), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3547), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3545), + [anon_sym_COLON_QMARK] = ACTIONS(3545), + [anon_sym_COLON_DASH] = ACTIONS(3545), + [anon_sym_PERCENT] = ACTIONS(3545), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1098] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + }, + [1099] = { + [sym_concatenation] = STATE(1572), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1572), + [anon_sym_RBRACE] = ACTIONS(3549), + [anon_sym_EQ] = ACTIONS(3551), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3551), + [anon_sym_COLON_QMARK] = ACTIONS(3551), + [anon_sym_COLON_DASH] = ACTIONS(3551), + [anon_sym_PERCENT] = ACTIONS(3551), + [anon_sym_DASH] = ACTIONS(3551), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1100] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_in] = ACTIONS(3030), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + }, + [1101] = { + [sym_concatenation] = STATE(1574), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1574), + [anon_sym_RBRACE] = ACTIONS(3555), + [anon_sym_EQ] = ACTIONS(3557), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3557), + [anon_sym_COLON_QMARK] = ACTIONS(3557), + [anon_sym_COLON_DASH] = ACTIONS(3557), + [anon_sym_PERCENT] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1102] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_in] = ACTIONS(3040), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3040), + }, + [1103] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3561), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1104] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(3561), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1105] = { + [sym__concat] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3078), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + }, + [1106] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3563), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1107] = { + [sym_file_redirect] = STATE(1577), + [sym_file_descriptor] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(3565), + [anon_sym_SEMI_SEMI] = ACTIONS(3567), + [anon_sym_PIPE_AMP] = ACTIONS(3567), + [anon_sym_AMP_AMP] = ACTIONS(3567), + [anon_sym_PIPE_PIPE] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1197), + [anon_sym_AMP_GT] = ACTIONS(1195), + [anon_sym_AMP_GT_GT] = ACTIONS(1197), + [anon_sym_LT_AMP] = ACTIONS(1197), + [anon_sym_GT_AMP] = ACTIONS(1197), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3565), + [anon_sym_LF] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + }, + [1108] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1109] = { + [sym_file_descriptor] = ACTIONS(3569), + [anon_sym_esac] = ACTIONS(3569), + [anon_sym_PIPE] = ACTIONS(3571), + [anon_sym_RPAREN] = ACTIONS(3569), + [anon_sym_SEMI_SEMI] = ACTIONS(3569), + [anon_sym_PIPE_AMP] = ACTIONS(3569), + [anon_sym_AMP_AMP] = ACTIONS(3569), + [anon_sym_PIPE_PIPE] = ACTIONS(3569), + [anon_sym_LT] = ACTIONS(3571), + [anon_sym_GT] = ACTIONS(3571), + [anon_sym_GT_GT] = ACTIONS(3569), + [anon_sym_AMP_GT] = ACTIONS(3571), + [anon_sym_AMP_GT_GT] = ACTIONS(3569), + [anon_sym_LT_AMP] = ACTIONS(3569), + [anon_sym_GT_AMP] = ACTIONS(3569), + [anon_sym_BQUOTE] = ACTIONS(3569), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3571), + [anon_sym_LF] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(3571), + }, + [1110] = { + [sym__terminated_statement] = STATE(1110), + [sym_for_statement] = STATE(619), + [sym_c_style_for_statement] = STATE(619), + [sym_while_statement] = STATE(619), + [sym_if_statement] = STATE(619), + [sym_case_statement] = STATE(619), + [sym_function_definition] = STATE(619), + [sym_subshell] = STATE(619), + [sym_pipeline] = STATE(619), + [sym_list] = STATE(619), + [sym_negated_command] = STATE(619), + [sym_test_command] = STATE(619), + [sym_declaration_command] = STATE(619), + [sym_unset_command] = STATE(619), + [sym_command] = STATE(619), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(620), + [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(1110), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(891), + [sym_variable_name] = ACTIONS(894), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(902), + [anon_sym_if] = ACTIONS(905), + [anon_sym_case] = ACTIONS(908), + [anon_sym_function] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(923), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_typeset] = ACTIONS(926), + [anon_sym_export] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_local] = ACTIONS(926), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(932), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(932), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_AMP] = ACTIONS(935), + [sym__special_characters] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(962), + }, + [1111] = { + [sym_concatenation] = STATE(1580), + [sym_string] = STATE(1579), + [sym_simple_expansion] = STATE(1579), + [sym_string_expansion] = STATE(1579), + [sym_expansion] = STATE(1579), + [sym_command_substitution] = STATE(1579), + [sym_process_substitution] = STATE(1579), + [sym__special_characters] = ACTIONS(3573), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(3575), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3575), + }, + [1112] = { + [aux_sym_concatenation_repeat1] = STATE(1581), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [1113] = { + [aux_sym_concatenation_repeat1] = STATE(1581), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [1114] = { + [anon_sym_esac] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_BQUOTE] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [1115] = { + [aux_sym_concatenation_repeat1] = STATE(1582), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(1023), + [sym_variable_name] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [1116] = { + [sym_file_redirect] = STATE(648), + [sym_heredoc_redirect] = STATE(648), + [sym_heredoc_body] = STATE(1064), + [sym_herestring_redirect] = STATE(648), + [aux_sym_while_statement_repeat1] = STATE(648), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_SEMI_SEMI] = ACTIONS(2256), + [anon_sym_PIPE_AMP] = ACTIONS(2256), + [anon_sym_AMP_AMP] = ACTIONS(2256), + [anon_sym_PIPE_PIPE] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_AMP_GT] = ACTIONS(479), + [anon_sym_AMP_GT_GT] = ACTIONS(481), + [anon_sym_LT_AMP] = ACTIONS(481), + [anon_sym_GT_AMP] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_LF] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2258), + }, + [1117] = { + [sym_compound_statement] = STATE(1583), + [anon_sym_LBRACE] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + }, + [1118] = { + [anon_sym_LT] = ACTIONS(3577), + [anon_sym_GT] = ACTIONS(3577), + [anon_sym_GT_GT] = ACTIONS(3579), + [anon_sym_AMP_GT] = ACTIONS(3577), + [anon_sym_AMP_GT_GT] = ACTIONS(3579), + [anon_sym_LT_AMP] = ACTIONS(3579), + [anon_sym_GT_AMP] = ACTIONS(3579), + [sym_comment] = ACTIONS(53), + }, + [1119] = { + [sym_concatenation] = STATE(1114), + [sym_string] = STATE(1586), + [sym_simple_expansion] = STATE(1586), + [sym_string_expansion] = STATE(1586), + [sym_expansion] = STATE(1586), + [sym_command_substitution] = STATE(1586), + [sym_process_substitution] = STATE(1586), + [sym__special_characters] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(3583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3583), + }, + [1120] = { + [anon_sym_LT] = ACTIONS(3585), + [anon_sym_GT] = ACTIONS(3585), + [anon_sym_GT_GT] = ACTIONS(3587), + [anon_sym_AMP_GT] = ACTIONS(3585), + [anon_sym_AMP_GT_GT] = ACTIONS(3587), + [anon_sym_LT_AMP] = ACTIONS(3587), + [anon_sym_GT_AMP] = ACTIONS(3587), + [sym_comment] = ACTIONS(53), + }, + [1121] = { + [sym_concatenation] = STATE(1170), + [sym_string] = STATE(1589), + [sym_simple_expansion] = STATE(1589), + [sym_string_expansion] = STATE(1589), + [sym_expansion] = STATE(1589), + [sym_command_substitution] = STATE(1589), + [sym_process_substitution] = STATE(1589), + [sym__special_characters] = ACTIONS(3589), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(3591), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3591), + }, + [1122] = { + [sym_concatenation] = STATE(1174), + [sym_string] = STATE(1591), + [sym_simple_expansion] = STATE(1591), + [sym_string_expansion] = STATE(1591), + [sym_expansion] = STATE(1591), + [sym_command_substitution] = STATE(1591), + [sym_process_substitution] = STATE(1591), + [sym__special_characters] = ACTIONS(3593), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(3595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3595), + }, + [1123] = { + [sym_file_redirect] = STATE(1592), + [sym_heredoc_redirect] = STATE(1592), + [sym_herestring_redirect] = STATE(1592), + [aux_sym_while_statement_repeat1] = STATE(1592), + [sym_file_descriptor] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_SEMI_SEMI] = ACTIONS(2553), + [anon_sym_PIPE_AMP] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_PIPE_PIPE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), + [anon_sym_GT_GT] = ACTIONS(2389), + [anon_sym_AMP_GT] = ACTIONS(2387), + [anon_sym_AMP_GT_GT] = ACTIONS(2389), + [anon_sym_LT_AMP] = ACTIONS(2389), + [anon_sym_GT_AMP] = ACTIONS(2389), + [anon_sym_LT_LT] = ACTIONS(1321), + [anon_sym_LT_LT_DASH] = ACTIONS(1323), + [anon_sym_LT_LT_LT] = ACTIONS(2391), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LF] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + }, + [1124] = { + [aux_sym_concatenation_repeat1] = STATE(632), + [sym__concat] = ACTIONS(581), + [sym_variable_name] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_SEMI_SEMI] = ACTIONS(1021), + [anon_sym_PIPE_AMP] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1025), + [sym_raw_string] = ACTIONS(1021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_BQUOTE] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1021), + [anon_sym_GT_LPAREN] = ACTIONS(1021), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1025), + [sym_word] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1025), + }, + [1125] = { + [aux_sym_concatenation_repeat1] = STATE(632), + [sym__concat] = ACTIONS(581), + [sym_variable_name] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), [anon_sym_RPAREN] = ACTIONS(999), [anon_sym_SEMI_SEMI] = ACTIONS(999), [anon_sym_PIPE_AMP] = ACTIONS(999), @@ -36017,882 +37807,856 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(999), [sym__special_characters] = ACTIONS(999), [anon_sym_DQUOTE] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(1001), [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(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] = { - [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), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_LF] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - }, - [1104] = { - [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] = { - [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_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] = { - [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_word] = ACTIONS(1993), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1001), + [sym_word] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(1001), }, - [1108] = { - [sym_concatenation] = STATE(954), + [1126] = { + [aux_sym_concatenation_repeat1] = STATE(1126), + [sym__concat] = ACTIONS(2618), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1666), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [1127] = { + [aux_sym_concatenation_repeat1] = STATE(1127), + [sym__concat] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1666), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [1128] = { + [sym_file_redirect] = STATE(1382), + [sym_file_descriptor] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_SEMI_SEMI] = ACTIONS(2373), + [anon_sym_PIPE_AMP] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_GT] = ACTIONS(2381), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_GT] = ACTIONS(2381), + [anon_sym_AMP_GT_GT] = ACTIONS(2383), + [anon_sym_LT_AMP] = ACTIONS(2383), + [anon_sym_GT_AMP] = ACTIONS(2383), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2375), + }, + [1129] = { + [aux_sym_concatenation_repeat1] = STATE(1131), + [sym__simple_heredoc_body] = ACTIONS(981), + [sym__heredoc_body_beginning] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), + }, + [1130] = { + [aux_sym_concatenation_repeat1] = STATE(1131), + [sym__simple_heredoc_body] = ACTIONS(985), + [sym__heredoc_body_beginning] = ACTIONS(985), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [1131] = { + [aux_sym_concatenation_repeat1] = STATE(1593), + [sym__simple_heredoc_body] = ACTIONS(695), + [sym__heredoc_body_beginning] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [1132] = { + [anon_sym_esac] = ACTIONS(3597), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_RPAREN] = ACTIONS(3597), + [anon_sym_SEMI_SEMI] = ACTIONS(3597), + [anon_sym_PIPE_AMP] = ACTIONS(3597), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3599), + [anon_sym_LF] = ACTIONS(3597), + [anon_sym_AMP] = ACTIONS(3599), + }, + [1133] = { + [sym_file_redirect] = STATE(648), + [sym_heredoc_redirect] = STATE(648), + [sym_heredoc_body] = STATE(1398), + [sym_herestring_redirect] = STATE(648), + [aux_sym_while_statement_repeat1] = STATE(648), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(3133), + [anon_sym_SEMI_SEMI] = ACTIONS(3133), + [anon_sym_PIPE_AMP] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_PIPE_PIPE] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_AMP_GT] = ACTIONS(479), + [anon_sym_AMP_GT_GT] = ACTIONS(481), + [anon_sym_LT_AMP] = ACTIONS(481), + [anon_sym_GT_AMP] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(483), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3135), + }, + [1134] = { + [sym_file_descriptor] = ACTIONS(2014), + [sym_variable_name] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2016), + [anon_sym_GT] = ACTIONS(2016), + [anon_sym_GT_GT] = ACTIONS(2014), + [anon_sym_AMP_GT] = ACTIONS(2016), + [anon_sym_AMP_GT_GT] = ACTIONS(2014), + [anon_sym_LT_AMP] = ACTIONS(2014), + [anon_sym_GT_AMP] = ACTIONS(2014), + [sym__special_characters] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [sym_raw_string] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2014), + [anon_sym_BQUOTE] = ACTIONS(2014), + [anon_sym_LT_LPAREN] = ACTIONS(2014), + [anon_sym_GT_LPAREN] = ACTIONS(2014), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2014), + }, + [1135] = { + [sym_concatenation] = STATE(960), [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), + [aux_sym_for_statement_repeat1] = STATE(960), + [anon_sym_RPAREN] = ACTIONS(3601), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(985), - }, - [1109] = { - [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(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] = { - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(3508), - [sym_comment] = ACTIONS(53), - }, - [1113] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(3510), - [sym_comment] = ACTIONS(53), - }, - [1114] = { - [anon_sym_RBRACE] = ACTIONS(3510), - [sym_comment] = ACTIONS(53), - }, - [1115] = { - [sym_concatenation] = STATE(1544), - [sym_string] = STATE(1543), - [sym_simple_expansion] = STATE(1543), - [sym_string_expansion] = STATE(1543), - [sym_expansion] = STATE(1543), - [sym_command_substitution] = STATE(1543), - [sym_process_substitution] = STATE(1543), - [anon_sym_RBRACE] = ACTIONS(3510), - [sym__special_characters] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3514), - [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(3514), - }, - [1116] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_RBRACK] = ACTIONS(2868), - [anon_sym_EQ_TILDE] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2868), - }, - [1117] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3516), - }, - [1118] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1119] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_RBRACK] = ACTIONS(2876), - [anon_sym_EQ_TILDE] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2876), - }, - [1120] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3520), - }, - [1121] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3522), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1122] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3524), - }, - [1123] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1124] = { - [sym_concatenation] = STATE(1551), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1551), - [anon_sym_RBRACE] = ACTIONS(3526), - [anon_sym_EQ] = ACTIONS(3528), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3530), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_DASH] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1125] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_RBRACK] = ACTIONS(2948), - [anon_sym_EQ_TILDE] = ACTIONS(2948), - [anon_sym_EQ_EQ] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_GT] = ACTIONS(2948), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2948), - }, - [1126] = { - [sym_concatenation] = STATE(1553), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1553), - [anon_sym_RBRACE] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3534), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3536), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1127] = { - [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_concatenation] = STATE(1555), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1555), - [anon_sym_RBRACE] = ACTIONS(3538), - [anon_sym_EQ] = ACTIONS(3540), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1129] = { - [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] = { - [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] = { - [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] = { - [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] = { - [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_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] = { - [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), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_LF] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(653), + [sym_word] = ACTIONS(1011), }, [1136] = { + [aux_sym_concatenation_repeat1] = STATE(1136), + [sym__concat] = ACTIONS(2555), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1664), + [anon_sym_EQ_EQ] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG_EQ] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1664), + }, + [1137] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_RBRACK] = ACTIONS(2855), + [anon_sym_EQ_TILDE] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2855), + }, + [1138] = { + [sym__concat] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_RBRACK] = ACTIONS(2869), + [anon_sym_EQ_TILDE] = ACTIONS(2869), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_GT] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2869), + }, + [1139] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3603), + [sym_comment] = ACTIONS(53), + }, + [1140] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3605), + [sym_comment] = ACTIONS(53), + }, + [1141] = { + [anon_sym_RBRACE] = ACTIONS(3605), + [sym_comment] = ACTIONS(53), + }, + [1142] = { + [sym_concatenation] = STATE(1599), + [sym_string] = STATE(1598), + [sym_simple_expansion] = STATE(1598), + [sym_string_expansion] = STATE(1598), + [sym_expansion] = STATE(1598), + [sym_command_substitution] = STATE(1598), + [sym_process_substitution] = STATE(1598), + [anon_sym_RBRACE] = ACTIONS(3605), + [sym__special_characters] = ACTIONS(3607), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3609), + }, + [1143] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_RBRACK] = ACTIONS(2905), + [anon_sym_EQ_TILDE] = ACTIONS(2905), + [anon_sym_EQ_EQ] = ACTIONS(2905), + [anon_sym_EQ] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_BANG_EQ] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2905), + }, + [1144] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3611), + }, + [1145] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3613), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1146] = { + [sym__concat] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_RBRACK] = ACTIONS(2913), + [anon_sym_EQ_TILDE] = ACTIONS(2913), + [anon_sym_EQ_EQ] = ACTIONS(2913), + [anon_sym_EQ] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_GT] = ACTIONS(2913), + [anon_sym_BANG_EQ] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2913), + }, + [1147] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3615), + }, + [1148] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3617), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1149] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3619), + }, + [1150] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1151] = { + [sym_concatenation] = STATE(1606), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1606), + [anon_sym_RBRACE] = ACTIONS(3621), + [anon_sym_EQ] = ACTIONS(3623), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3623), + [anon_sym_COLON_QMARK] = ACTIONS(3623), + [anon_sym_COLON_DASH] = ACTIONS(3623), + [anon_sym_PERCENT] = ACTIONS(3623), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1152] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_RBRACK] = ACTIONS(2985), + [anon_sym_EQ_TILDE] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_EQ] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2985), + }, + [1153] = { + [sym_concatenation] = STATE(1608), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1608), + [anon_sym_RBRACE] = ACTIONS(3627), + [anon_sym_EQ] = ACTIONS(3629), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3629), + [anon_sym_COLON_QMARK] = ACTIONS(3629), + [anon_sym_COLON_DASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(3629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1154] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_RBRACK] = ACTIONS(3030), + [anon_sym_EQ_TILDE] = ACTIONS(3030), + [anon_sym_EQ_EQ] = ACTIONS(3030), + [anon_sym_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_GT] = ACTIONS(3030), + [anon_sym_BANG_EQ] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3030), + }, + [1155] = { + [sym_concatenation] = STATE(1610), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1610), + [anon_sym_RBRACE] = ACTIONS(3633), + [anon_sym_EQ] = ACTIONS(3635), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3635), + [anon_sym_COLON_QMARK] = ACTIONS(3635), + [anon_sym_COLON_DASH] = ACTIONS(3635), + [anon_sym_PERCENT] = ACTIONS(3635), + [anon_sym_DASH] = ACTIONS(3635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1156] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_RBRACK] = ACTIONS(3040), + [anon_sym_EQ_TILDE] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3040), + }, + [1157] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3639), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1158] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(3639), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1159] = { + [sym__concat] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_RBRACK] = ACTIONS(3078), + [anon_sym_EQ_TILDE] = ACTIONS(3078), + [anon_sym_EQ_EQ] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3078), + }, + [1160] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3641), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1161] = { + [sym_concatenation] = STATE(1615), + [sym_string] = STATE(1614), + [sym_simple_expansion] = STATE(1614), + [sym_string_expansion] = STATE(1614), + [sym_expansion] = STATE(1614), + [sym_command_substitution] = STATE(1614), + [sym_process_substitution] = STATE(1614), + [sym__special_characters] = ACTIONS(3643), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(3645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3645), + }, + [1162] = { + [aux_sym_concatenation_repeat1] = STATE(1617), + [sym_file_descriptor] = ACTIONS(661), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_AMP_GT] = ACTIONS(665), + [anon_sym_AMP_GT_GT] = ACTIONS(661), + [anon_sym_LT_AMP] = ACTIONS(661), + [anon_sym_GT_AMP] = ACTIONS(661), + [anon_sym_LT_LT] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(661), + [anon_sym_LT_LT_LT] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [1163] = { [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), + [aux_sym_string_repeat1] = STATE(1620), + [anon_sym_DQUOTE] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3651), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, - [1137] = { - [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), + [1164] = { + [sym_string] = STATE(1622), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(3653), + [sym_raw_string] = ACTIONS(3655), + [anon_sym_POUND] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3653), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3657), + [anon_sym_STAR] = ACTIONS(3653), + [anon_sym_AT] = ACTIONS(3653), + [anon_sym_QMARK] = ACTIONS(3653), + [anon_sym_0] = ACTIONS(3659), + [anon_sym__] = ACTIONS(3659), }, - [1138] = { - [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(669), - [anon_sym_LF] = ACTIONS(667), - [anon_sym_AMP] = ACTIONS(669), + [1165] = { + [aux_sym_concatenation_repeat1] = STATE(1617), + [sym_file_descriptor] = ACTIONS(679), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_LT_LT_DASH] = ACTIONS(679), + [anon_sym_LT_LT_LT] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), }, - [1139] = { - [sym_subscript] = STATE(1573), - [sym_variable_name] = ACTIONS(3566), - [anon_sym_BANG] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3570), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3572), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_AT] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_0] = ACTIONS(3574), - [anon_sym__] = ACTIONS(3574), + [1166] = { + [sym_subscript] = STATE(1628), + [sym_variable_name] = ACTIONS(3661), + [anon_sym_BANG] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3665), + [anon_sym_POUND] = ACTIONS(3663), + [anon_sym_DASH] = ACTIONS(3665), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3667), + [anon_sym_STAR] = ACTIONS(3665), + [anon_sym_AT] = ACTIONS(3665), + [anon_sym_QMARK] = ACTIONS(3665), + [anon_sym_0] = ACTIONS(3669), + [anon_sym__] = ACTIONS(3669), }, - [1140] = { - [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), + [1167] = { + [sym__terminated_statement] = STATE(1631), + [sym_for_statement] = STATE(1629), + [sym_c_style_for_statement] = STATE(1629), + [sym_while_statement] = STATE(1629), + [sym_if_statement] = STATE(1629), + [sym_case_statement] = STATE(1629), + [sym_function_definition] = STATE(1629), + [sym_subshell] = STATE(1629), + [sym_pipeline] = STATE(1629), + [sym_list] = STATE(1629), + [sym_negated_command] = STATE(1629), + [sym_test_command] = STATE(1629), + [sym_declaration_command] = STATE(1629), + [sym_unset_command] = STATE(1629), + [sym_command] = STATE(1629), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1575), + [sym_variable_assignment] = STATE(1630), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -36902,7 +38666,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(62), [sym_command_substitution] = STATE(62), [sym_process_substitution] = STATE(62), - [aux_sym_program_repeat1] = STATE(1576), + [aux_sym_program_repeat1] = STATE(1631), [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), @@ -36941,24 +38705,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [1141] = { - [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), + [1168] = { + [sym__terminated_statement] = STATE(1634), + [sym_for_statement] = STATE(1632), + [sym_c_style_for_statement] = STATE(1632), + [sym_while_statement] = STATE(1632), + [sym_if_statement] = STATE(1632), + [sym_case_statement] = STATE(1632), + [sym_function_definition] = STATE(1632), + [sym_subshell] = STATE(1632), + [sym_pipeline] = STATE(1632), + [sym_list] = STATE(1632), + [sym_negated_command] = STATE(1632), + [sym_test_command] = STATE(1632), + [sym_declaration_command] = STATE(1632), + [sym_unset_command] = STATE(1632), + [sym_command] = STATE(1632), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(1578), + [sym_variable_assignment] = STATE(1633), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -36968,26 +38732,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1579), + [aux_sym_program_repeat1] = STATE(1634), [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_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -37005,26 +38769,26 @@ 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(277), + [sym_word] = ACTIONS(281), }, - [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), + [1169] = { + [sym__terminated_statement] = STATE(1637), + [sym_for_statement] = STATE(1635), + [sym_c_style_for_statement] = STATE(1635), + [sym_while_statement] = STATE(1635), + [sym_if_statement] = STATE(1635), + [sym_case_statement] = STATE(1635), + [sym_function_definition] = STATE(1635), + [sym_subshell] = STATE(1635), + [sym_pipeline] = STATE(1635), + [sym_list] = STATE(1635), + [sym_negated_command] = STATE(1635), + [sym_test_command] = STATE(1635), + [sym_declaration_command] = STATE(1635), + [sym_unset_command] = STATE(1635), + [sym_command] = STATE(1635), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1581), + [sym_variable_assignment] = STATE(1636), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -37034,7 +38798,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(62), [sym_command_substitution] = STATE(62), [sym_process_substitution] = STATE(62), - [aux_sym_program_repeat1] = STATE(1582), + [aux_sym_program_repeat1] = STATE(1637), [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), @@ -37073,1801 +38837,204 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(1587), - [sym_string] = STATE(1586), - [sym_simple_expansion] = STATE(1586), - [sym_string_expansion] = STATE(1586), - [sym_expansion] = STATE(1586), - [sym_command_substitution] = STATE(1586), - [sym_process_substitution] = STATE(1586), - [anon_sym_RBRACE] = ACTIONS(3590), - [sym__special_characters] = ACTIONS(3592), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3594), - [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(3594), - }, - [1155] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_RPAREN] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2868), - [anon_sym_EQ_TILDE] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2868), - }, - [1156] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3596), - }, - [1157] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1158] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2876), - [anon_sym_EQ_TILDE] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2876), - }, - [1159] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3600), - }, - [1160] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1161] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3604), - }, - [1162] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1163] = { - [sym_concatenation] = STATE(1594), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1594), - [anon_sym_RBRACE] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COLON_QMARK] = ACTIONS(3608), - [anon_sym_COLON_DASH] = ACTIONS(3608), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1164] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2948), - [anon_sym_EQ_TILDE] = ACTIONS(2948), - [anon_sym_EQ_EQ] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_GT] = ACTIONS(2948), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2948), - }, - [1165] = { - [sym_concatenation] = STATE(1596), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1596), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_EQ] = ACTIONS(3614), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1598), - [anon_sym_RBRACE] = ACTIONS(3618), - [anon_sym_EQ] = ACTIONS(3620), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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_file_descriptor] = ACTIONS(679), + [anon_sym_esac] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_LT_LT_DASH] = ACTIONS(679), + [anon_sym_LT_LT_LT] = ACTIONS(679), + [anon_sym_BQUOTE] = ACTIONS(679), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), }, [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_file_descriptor] = ACTIONS(1932), + [anon_sym_esac] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1934), + [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(1934), + [anon_sym_GT] = ACTIONS(1934), + [anon_sym_GT_GT] = ACTIONS(1932), + [anon_sym_AMP_GT] = ACTIONS(1934), + [anon_sym_AMP_GT_GT] = ACTIONS(1932), + [anon_sym_LT_AMP] = ACTIONS(1932), + [anon_sym_GT_AMP] = ACTIONS(1932), + [anon_sym_LT_LT] = ACTIONS(1934), + [anon_sym_LT_LT_DASH] = ACTIONS(1932), + [anon_sym_LT_LT_LT] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1932), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3034), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_LF] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1934), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1617), + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1936), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1936), + [anon_sym_LT_AMP] = ACTIONS(1936), + [anon_sym_GT_AMP] = ACTIONS(1936), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1936), + [anon_sym_LT_LT_LT] = ACTIONS(1936), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1617), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, [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_file_descriptor] = ACTIONS(1940), + [anon_sym_esac] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, [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), + [sym_file_redirect] = STATE(1175), + [sym_heredoc_redirect] = STATE(1175), + [sym_herestring_redirect] = STATE(1175), + [aux_sym_while_statement_repeat1] = STATE(1175), + [sym_file_descriptor] = ACTIONS(3671), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), + [anon_sym_PIPE_AMP] = ACTIONS(1948), + [anon_sym_AMP_AMP] = ACTIONS(1948), + [anon_sym_PIPE_PIPE] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_GT] = ACTIONS(3674), + [anon_sym_GT_GT] = ACTIONS(3677), + [anon_sym_AMP_GT] = ACTIONS(3674), + [anon_sym_AMP_GT_GT] = ACTIONS(3677), + [anon_sym_LT_AMP] = ACTIONS(3677), + [anon_sym_GT_AMP] = ACTIONS(3677), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_LT_LT_DASH] = ACTIONS(3683), + [anon_sym_LT_LT_LT] = ACTIONS(3686), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1953), }, [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), + [sym__concat] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2855), + [anon_sym_EQ_TILDE] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2855), }, [1177] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(3630), + [sym__concat] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2869), + [anon_sym_EQ_TILDE] = ACTIONS(2869), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_GT] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2869), }, [1178] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(3632), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3689), [sym_comment] = ACTIONS(53), }, [1179] = { - [anon_sym_RBRACE] = ACTIONS(3632), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3691), [sym_comment] = ACTIONS(53), }, [1180] = { - [sym_concatenation] = STATE(1606), - [sym_string] = STATE(1605), - [sym_simple_expansion] = STATE(1605), - [sym_string_expansion] = STATE(1605), - [sym_expansion] = STATE(1605), - [sym_command_substitution] = STATE(1605), - [sym_process_substitution] = STATE(1605), - [anon_sym_RBRACE] = ACTIONS(3632), - [sym__special_characters] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3636), - [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), + [anon_sym_RBRACE] = ACTIONS(3691), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3636), }, [1181] = { - [sym__concat] = ACTIONS(2868), - [sym_variable_name] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [sym__special_characters] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym_raw_string] = ACTIONS(2870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [anon_sym_LT_LPAREN] = ACTIONS(2870), - [anon_sym_GT_LPAREN] = ACTIONS(2870), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2870), - [sym_word] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - }, - [1182] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3638), - }, - [1183] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3640), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1184] = { - [sym__concat] = ACTIONS(2876), - [sym_variable_name] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [anon_sym_PIPE_AMP] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [sym__special_characters] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [anon_sym_LT_LPAREN] = ACTIONS(2878), - [anon_sym_GT_LPAREN] = ACTIONS(2878), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), - [sym_word] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [1185] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3642), - }, - [1186] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3644), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1187] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3646), - }, - [1188] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1189] = { - [sym_concatenation] = STATE(1613), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1613), - [anon_sym_RBRACE] = ACTIONS(3648), - [anon_sym_EQ] = ACTIONS(3650), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COLON_QMARK] = ACTIONS(3650), - [anon_sym_COLON_DASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1190] = { - [sym__concat] = ACTIONS(2948), - [sym_variable_name] = ACTIONS(2948), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2950), - [anon_sym_PIPE_AMP] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [sym__special_characters] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [anon_sym_LT_LPAREN] = ACTIONS(2950), - [anon_sym_GT_LPAREN] = ACTIONS(2950), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), - [sym_word] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - }, - [1191] = { - [sym_concatenation] = STATE(1615), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1615), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_EQ] = ACTIONS(3656), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3658), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1617), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(3662), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3664), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(1624), - [sym_string] = STATE(1623), - [sym_simple_expansion] = STATE(1623), - [sym_string_expansion] = STATE(1623), - [sym_expansion] = STATE(1623), - [sym_command_substitution] = STATE(1623), - [sym_process_substitution] = STATE(1623), - [anon_sym_RBRACE] = ACTIONS(3672), - [sym__special_characters] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3676), - [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(3676), - }, - [1205] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [sym__special_characters] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym_raw_string] = ACTIONS(2870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [anon_sym_LT_LPAREN] = ACTIONS(2870), - [anon_sym_GT_LPAREN] = ACTIONS(2870), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2870), - [sym_word] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - }, - [1206] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3678), - }, - [1207] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3680), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1208] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [anon_sym_PIPE_AMP] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [sym__special_characters] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [anon_sym_LT_LPAREN] = ACTIONS(2878), - [anon_sym_GT_LPAREN] = ACTIONS(2878), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), - [sym_word] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [1209] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3682), - }, - [1210] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3684), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1211] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3686), - }, - [1212] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1213] = { - [sym_concatenation] = STATE(1631), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1631), - [anon_sym_RBRACE] = ACTIONS(3688), - [anon_sym_EQ] = ACTIONS(3690), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_COLON_QMARK] = ACTIONS(3690), - [anon_sym_COLON_DASH] = ACTIONS(3690), - [anon_sym_PERCENT] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1214] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2950), - [anon_sym_PIPE_AMP] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [sym__special_characters] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [anon_sym_LT_LPAREN] = ACTIONS(2950), - [anon_sym_GT_LPAREN] = ACTIONS(2950), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), - [sym_word] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - }, - [1215] = { - [sym_concatenation] = STATE(1633), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1633), - [anon_sym_RBRACE] = ACTIONS(3694), - [anon_sym_EQ] = ACTIONS(3696), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1635), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3702), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(1642), [sym_string] = STATE(1641), [sym_simple_expansion] = STATE(1641), @@ -38875,165 +39042,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1641), [sym_command_substitution] = STATE(1641), [sym_process_substitution] = STATE(1641), - [anon_sym_RBRACE] = ACTIONS(3712), - [sym__special_characters] = ACTIONS(3714), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3716), - [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), + [anon_sym_RBRACE] = ACTIONS(3691), + [sym__special_characters] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3716), + [sym_word] = ACTIONS(3695), }, - [1229] = { - [sym_file_descriptor] = ACTIONS(2868), - [sym__concat] = ACTIONS(2868), - [sym_variable_name] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_GT] = ACTIONS(2870), - [anon_sym_AMP_GT_GT] = ACTIONS(2868), - [anon_sym_LT_AMP] = ACTIONS(2868), - [anon_sym_GT_AMP] = ACTIONS(2868), - [sym__special_characters] = ACTIONS(2868), - [anon_sym_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym_raw_string] = ACTIONS(2868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2868), - [anon_sym_BQUOTE] = ACTIONS(2868), - [anon_sym_LT_LPAREN] = ACTIONS(2868), - [anon_sym_GT_LPAREN] = ACTIONS(2868), + [1182] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2905), + [anon_sym_EQ_TILDE] = ACTIONS(2905), + [anon_sym_EQ_EQ] = ACTIONS(2905), + [anon_sym_EQ] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_BANG_EQ] = ACTIONS(2905), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2868), + [sym_test_operator] = ACTIONS(2905), }, - [1230] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3718), + [1183] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3697), }, - [1231] = { - [sym_concatenation] = STATE(885), + [1184] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3720), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [1232] = { - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [sym_variable_name] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2876), - [anon_sym_LT_AMP] = ACTIONS(2876), - [anon_sym_GT_AMP] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), + [1185] = { + [sym__concat] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2913), + [anon_sym_EQ_TILDE] = ACTIONS(2913), + [anon_sym_EQ_EQ] = ACTIONS(2913), + [anon_sym_EQ] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_GT] = ACTIONS(2913), + [anon_sym_BANG_EQ] = ACTIONS(2913), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2876), + [sym_test_operator] = ACTIONS(2913), }, - [1233] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3722), + [1186] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3701), }, - [1234] = { - [sym_concatenation] = STATE(885), + [1187] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3724), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3703), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [1235] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3726), + [1188] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3705), }, - [1236] = { - [sym_concatenation] = STATE(885), + [1189] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3691), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [1237] = { + [1190] = { [sym_concatenation] = STATE(1649), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -39042,50 +39195,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1649), - [anon_sym_RBRACE] = ACTIONS(3728), - [anon_sym_EQ] = ACTIONS(3730), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3730), - [anon_sym_COLON_QMARK] = ACTIONS(3730), - [anon_sym_COLON_DASH] = ACTIONS(3730), - [anon_sym_PERCENT] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(3707), + [anon_sym_EQ] = ACTIONS(3709), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [1238] = { - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [sym_variable_name] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2948), - [anon_sym_LT_AMP] = ACTIONS(2948), - [anon_sym_GT_AMP] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), + [1191] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2985), + [anon_sym_EQ_TILDE] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_EQ] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2948), + [sym_test_operator] = ACTIONS(2985), }, - [1239] = { + [1192] = { [sym_concatenation] = STATE(1651), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -39094,50 +39240,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1651), - [anon_sym_RBRACE] = ACTIONS(3734), - [anon_sym_EQ] = ACTIONS(3736), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3738), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(3713), + [anon_sym_EQ] = ACTIONS(3715), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3715), + [anon_sym_COLON_QMARK] = ACTIONS(3715), + [anon_sym_COLON_DASH] = ACTIONS(3715), + [anon_sym_PERCENT] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [1193] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_RPAREN] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_EQ_TILDE] = ACTIONS(3030), + [anon_sym_EQ_EQ] = ACTIONS(3030), + [anon_sym_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_GT] = ACTIONS(3030), + [anon_sym_BANG_EQ] = ACTIONS(3030), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2993), + [sym_test_operator] = ACTIONS(3030), }, - [1241] = { + [1194] = { [sym_concatenation] = STATE(1653), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -39146,807 +39285,1045 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1653), - [anon_sym_RBRACE] = ACTIONS(3740), - [anon_sym_EQ] = ACTIONS(3742), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(3719), + [anon_sym_EQ] = ACTIONS(3721), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3721), + [anon_sym_COLON_QMARK] = ACTIONS(3721), + [anon_sym_COLON_DASH] = ACTIONS(3721), + [anon_sym_PERCENT] = ACTIONS(3721), + [anon_sym_DASH] = ACTIONS(3721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1195] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_RPAREN] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3040), + [anon_sym_EQ_TILDE] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3040), + }, + [1196] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3725), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1197] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(3725), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1198] = { + [sym__concat] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3078), + [anon_sym_EQ_TILDE] = ACTIONS(3078), + [anon_sym_EQ_EQ] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3078), + }, + [1199] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3727), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1200] = { + [sym_variable_name] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_RPAREN] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2014), + [anon_sym_PIPE_AMP] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2014), + [sym__special_characters] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [sym_raw_string] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2014), + [anon_sym_BQUOTE] = ACTIONS(2014), + [anon_sym_LT_LPAREN] = ACTIONS(2014), + [anon_sym_GT_LPAREN] = ACTIONS(2014), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2016), + [sym_word] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_LF] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2016), + }, + [1201] = { + [sym_concatenation] = STATE(960), + [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(960), + [anon_sym_RPAREN] = ACTIONS(3729), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1011), + }, + [1202] = { + [sym__concat] = ACTIONS(2855), + [sym_variable_name] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2857), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [1203] = { + [sym__concat] = ACTIONS(2869), + [sym_variable_name] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2871), + [sym_word] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + }, + [1204] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3731), + [sym_comment] = ACTIONS(53), + }, + [1205] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3733), + [sym_comment] = ACTIONS(53), + }, + [1206] = { + [anon_sym_RBRACE] = ACTIONS(3733), + [sym_comment] = ACTIONS(53), + }, + [1207] = { + [sym_concatenation] = STATE(1661), + [sym_string] = STATE(1660), + [sym_simple_expansion] = STATE(1660), + [sym_string_expansion] = STATE(1660), + [sym_expansion] = STATE(1660), + [sym_command_substitution] = STATE(1660), + [sym_process_substitution] = STATE(1660), + [anon_sym_RBRACE] = ACTIONS(3733), + [sym__special_characters] = ACTIONS(3735), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3737), + }, + [1208] = { + [sym__concat] = ACTIONS(2905), + [sym_variable_name] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2907), + [sym_word] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + }, + [1209] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3739), + }, + [1210] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3741), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1211] = { + [sym__concat] = ACTIONS(2913), + [sym_variable_name] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2915), + [sym_word] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + }, + [1212] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3743), + }, + [1213] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3745), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1214] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3747), + }, + [1215] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3733), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1216] = { + [sym_concatenation] = STATE(1668), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1668), + [anon_sym_RBRACE] = ACTIONS(3749), + [anon_sym_EQ] = ACTIONS(3751), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3751), + [anon_sym_COLON_QMARK] = ACTIONS(3751), + [anon_sym_COLON_DASH] = ACTIONS(3751), + [anon_sym_PERCENT] = ACTIONS(3751), + [anon_sym_DASH] = ACTIONS(3751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1217] = { + [sym__concat] = ACTIONS(2985), + [sym_variable_name] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2987), + [sym_word] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), + }, + [1218] = { + [sym_concatenation] = STATE(1670), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1670), + [anon_sym_RBRACE] = ACTIONS(3755), + [anon_sym_EQ] = ACTIONS(3757), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3757), + [anon_sym_COLON_QMARK] = ACTIONS(3757), + [anon_sym_COLON_DASH] = ACTIONS(3757), + [anon_sym_PERCENT] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1219] = { + [sym__concat] = ACTIONS(3030), + [sym_variable_name] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_RPAREN] = ACTIONS(3030), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3032), + [sym_word] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + }, + [1220] = { + [sym_concatenation] = STATE(1672), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1672), + [anon_sym_RBRACE] = ACTIONS(3761), + [anon_sym_EQ] = ACTIONS(3763), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3763), + [anon_sym_COLON_QMARK] = ACTIONS(3763), + [anon_sym_COLON_DASH] = ACTIONS(3763), + [anon_sym_PERCENT] = ACTIONS(3763), + [anon_sym_DASH] = ACTIONS(3763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1221] = { + [sym__concat] = ACTIONS(3040), + [sym_variable_name] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_RPAREN] = ACTIONS(3040), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3042), + [sym_word] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + }, + [1222] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3767), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1223] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(3767), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1224] = { + [sym__concat] = ACTIONS(3078), + [sym_variable_name] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3080), + [sym_word] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), + }, + [1225] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3769), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1226] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2857), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [1227] = { + [sym__concat] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2871), + [sym_word] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + }, + [1228] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3771), + [sym_comment] = ACTIONS(53), + }, + [1229] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3773), + [sym_comment] = ACTIONS(53), + }, + [1230] = { + [anon_sym_RBRACE] = ACTIONS(3773), + [sym_comment] = ACTIONS(53), + }, + [1231] = { + [sym_concatenation] = STATE(1679), + [sym_string] = STATE(1678), + [sym_simple_expansion] = STATE(1678), + [sym_string_expansion] = STATE(1678), + [sym_expansion] = STATE(1678), + [sym_command_substitution] = STATE(1678), + [sym_process_substitution] = STATE(1678), + [anon_sym_RBRACE] = ACTIONS(3773), + [sym__special_characters] = ACTIONS(3775), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3777), + }, + [1232] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2907), + [sym_word] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + }, + [1233] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3779), + }, + [1234] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3781), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1235] = { + [sym__concat] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2915), + [sym_word] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + }, + [1236] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3783), + }, + [1237] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3785), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1238] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3787), + }, + [1239] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3773), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1240] = { + [sym_concatenation] = STATE(1686), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1686), + [anon_sym_RBRACE] = ACTIONS(3789), + [anon_sym_EQ] = ACTIONS(3791), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3791), + [anon_sym_COLON_QMARK] = ACTIONS(3791), + [anon_sym_COLON_DASH] = ACTIONS(3791), + [anon_sym_PERCENT] = ACTIONS(3791), + [anon_sym_DASH] = ACTIONS(3791), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1241] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2987), + [sym_word] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), }, [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(1660), - [sym_string] = STATE(1659), - [sym_simple_expansion] = STATE(1659), - [sym_string_expansion] = STATE(1659), - [sym_expansion] = STATE(1659), - [sym_command_substitution] = STATE(1659), - [sym_process_substitution] = STATE(1659), - [anon_sym_RBRACE] = ACTIONS(3752), - [sym__special_characters] = ACTIONS(3754), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3756), - [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(3756), - }, - [1252] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym__string_content] = ACTIONS(2868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [sym_comment] = ACTIONS(179), - }, - [1253] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3758), - }, - [1254] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3760), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1255] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym__string_content] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [sym_comment] = ACTIONS(179), - }, - [1256] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3762), - }, - [1257] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3764), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1258] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3766), - }, - [1259] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3752), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1260] = { - [sym_concatenation] = STATE(1667), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1667), - [anon_sym_RBRACE] = ACTIONS(3768), - [anon_sym_EQ] = ACTIONS(3770), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3770), - [anon_sym_COLON_QMARK] = ACTIONS(3770), - [anon_sym_COLON_DASH] = ACTIONS(3770), - [anon_sym_PERCENT] = ACTIONS(3770), - [anon_sym_DASH] = ACTIONS(3770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1261] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym__string_content] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [sym_comment] = ACTIONS(179), - }, - [1262] = { - [sym_concatenation] = STATE(1669), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1669), - [anon_sym_RBRACE] = ACTIONS(3774), - [anon_sym_EQ] = ACTIONS(3776), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1671), - [anon_sym_RBRACE] = ACTIONS(3780), - [anon_sym_EQ] = ACTIONS(3782), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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_subscript] = STATE(1685), - [sym_variable_name] = ACTIONS(3816), - [anon_sym_DOLLAR] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3820), - [anon_sym_STAR] = ACTIONS(3818), - [anon_sym_AT] = ACTIONS(3818), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_0] = ACTIONS(3822), - [anon_sym__] = ACTIONS(3822), - }, - [1285] = { [sym_concatenation] = STATE(1688), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -39955,702 +40332,933 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1688), - [anon_sym_RBRACE] = ACTIONS(3824), - [anon_sym_EQ] = ACTIONS(3826), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3830), - [anon_sym_COLON] = ACTIONS(3826), - [anon_sym_COLON_QMARK] = ACTIONS(3826), - [anon_sym_COLON_DASH] = ACTIONS(3826), - [anon_sym_PERCENT] = ACTIONS(3826), - [anon_sym_DASH] = ACTIONS(3826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(3795), + [anon_sym_EQ] = ACTIONS(3797), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3797), + [anon_sym_COLON_QMARK] = ACTIONS(3797), + [anon_sym_COLON_DASH] = ACTIONS(3797), + [anon_sym_PERCENT] = ACTIONS(3797), + [anon_sym_DASH] = ACTIONS(3797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1243] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_RPAREN] = ACTIONS(3030), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3032), + [sym_word] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + }, + [1244] = { + [sym_concatenation] = STATE(1690), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1690), + [anon_sym_RBRACE] = ACTIONS(3801), + [anon_sym_EQ] = ACTIONS(3803), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3805), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3803), + [anon_sym_COLON_QMARK] = ACTIONS(3803), + [anon_sym_COLON_DASH] = ACTIONS(3803), + [anon_sym_PERCENT] = ACTIONS(3803), + [anon_sym_DASH] = ACTIONS(3803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1245] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_RPAREN] = ACTIONS(3040), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3042), + [sym_word] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + }, + [1246] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3807), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1247] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(3807), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1248] = { + [sym__concat] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3080), + [sym_word] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), + }, + [1249] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1250] = { + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [sym_variable_name] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2855), + }, + [1251] = { + [sym_file_descriptor] = ACTIONS(2869), + [sym__concat] = ACTIONS(2869), + [sym_variable_name] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_AMP_GT] = ACTIONS(2871), + [anon_sym_AMP_GT_GT] = ACTIONS(2869), + [anon_sym_LT_AMP] = ACTIONS(2869), + [anon_sym_GT_AMP] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2869), + }, + [1252] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3811), + [sym_comment] = ACTIONS(53), + }, + [1253] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3813), + [sym_comment] = ACTIONS(53), + }, + [1254] = { + [anon_sym_RBRACE] = ACTIONS(3813), + [sym_comment] = ACTIONS(53), + }, + [1255] = { + [sym_concatenation] = STATE(1697), + [sym_string] = STATE(1696), + [sym_simple_expansion] = STATE(1696), + [sym_string_expansion] = STATE(1696), + [sym_expansion] = STATE(1696), + [sym_command_substitution] = STATE(1696), + [sym_process_substitution] = STATE(1696), + [anon_sym_RBRACE] = ACTIONS(3813), + [sym__special_characters] = ACTIONS(3815), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3817), + }, + [1256] = { + [sym_file_descriptor] = ACTIONS(2905), + [sym__concat] = ACTIONS(2905), + [sym_variable_name] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2907), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2905), + }, + [1257] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3819), + }, + [1258] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3821), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1259] = { + [sym_file_descriptor] = ACTIONS(2913), + [sym__concat] = ACTIONS(2913), + [sym_variable_name] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_GT] = ACTIONS(2915), + [anon_sym_AMP_GT_GT] = ACTIONS(2913), + [anon_sym_LT_AMP] = ACTIONS(2913), + [anon_sym_GT_AMP] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2913), + }, + [1260] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3823), + }, + [1261] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1262] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3827), + }, + [1263] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3813), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1264] = { + [sym_concatenation] = STATE(1704), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1704), + [anon_sym_RBRACE] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3831), + [anon_sym_COLON_QMARK] = ACTIONS(3831), + [anon_sym_COLON_DASH] = ACTIONS(3831), + [anon_sym_PERCENT] = ACTIONS(3831), + [anon_sym_DASH] = ACTIONS(3831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1265] = { + [sym_file_descriptor] = ACTIONS(2985), + [sym__concat] = ACTIONS(2985), + [sym_variable_name] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_GT] = ACTIONS(2987), + [anon_sym_AMP_GT_GT] = ACTIONS(2985), + [anon_sym_LT_AMP] = ACTIONS(2985), + [anon_sym_GT_AMP] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2985), + }, + [1266] = { + [sym_concatenation] = STATE(1706), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1706), + [anon_sym_RBRACE] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(3837), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3837), + [anon_sym_COLON_QMARK] = ACTIONS(3837), + [anon_sym_COLON_DASH] = ACTIONS(3837), + [anon_sym_PERCENT] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1267] = { + [sym_file_descriptor] = ACTIONS(3030), + [sym__concat] = ACTIONS(3030), + [sym_variable_name] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_GT] = ACTIONS(3032), + [anon_sym_AMP_GT_GT] = ACTIONS(3030), + [anon_sym_LT_AMP] = ACTIONS(3030), + [anon_sym_GT_AMP] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3030), + }, + [1268] = { + [sym_concatenation] = STATE(1708), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1708), + [anon_sym_RBRACE] = ACTIONS(3841), + [anon_sym_EQ] = ACTIONS(3843), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3843), + [anon_sym_COLON_QMARK] = ACTIONS(3843), + [anon_sym_COLON_DASH] = ACTIONS(3843), + [anon_sym_PERCENT] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1269] = { + [sym_file_descriptor] = ACTIONS(3040), + [sym__concat] = ACTIONS(3040), + [sym_variable_name] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_GT] = ACTIONS(3042), + [anon_sym_AMP_GT_GT] = ACTIONS(3040), + [anon_sym_LT_AMP] = ACTIONS(3040), + [anon_sym_GT_AMP] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3040), + }, + [1270] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3847), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1271] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(3847), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1272] = { + [sym_file_descriptor] = ACTIONS(3078), + [sym__concat] = ACTIONS(3078), + [sym_variable_name] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_GT] = ACTIONS(3080), + [anon_sym_AMP_GT_GT] = ACTIONS(3078), + [anon_sym_LT_AMP] = ACTIONS(3078), + [anon_sym_GT_AMP] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3078), + }, + [1273] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1274] = { + [sym__concat] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2871), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym__string_content] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2871), + [anon_sym_BQUOTE] = ACTIONS(2871), + [sym_comment] = ACTIONS(243), + }, + [1275] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3851), + [sym_comment] = ACTIONS(53), + }, + [1276] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3853), + [sym_comment] = ACTIONS(53), + }, + [1277] = { + [anon_sym_RBRACE] = ACTIONS(3853), + [sym_comment] = ACTIONS(53), + }, + [1278] = { + [sym_concatenation] = STATE(1715), + [sym_string] = STATE(1714), + [sym_simple_expansion] = STATE(1714), + [sym_string_expansion] = STATE(1714), + [sym_expansion] = STATE(1714), + [sym_command_substitution] = STATE(1714), + [sym_process_substitution] = STATE(1714), + [anon_sym_RBRACE] = ACTIONS(3853), + [sym__special_characters] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3857), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3857), + }, + [1279] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2907), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym__string_content] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2907), + [anon_sym_BQUOTE] = ACTIONS(2907), + [sym_comment] = ACTIONS(243), + }, + [1280] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3859), + }, + [1281] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3861), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1282] = { + [sym__concat] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2915), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym__string_content] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2915), + [anon_sym_BQUOTE] = ACTIONS(2915), + [sym_comment] = ACTIONS(243), + }, + [1283] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3863), + }, + [1284] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3865), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1285] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(3867), }, [1286] = { - [sym_concatenation] = STATE(1691), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1691), - [anon_sym_RBRACE] = ACTIONS(3832), - [anon_sym_EQ] = ACTIONS(3834), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(3853), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1287] = { - [sym_concatenation] = STATE(1694), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1694), - [anon_sym_RBRACE] = ACTIONS(3840), - [anon_sym_EQ] = ACTIONS(3842), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3844), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(3864), - [sym_comment] = ACTIONS(53), - }, - [1298] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(3866), - [sym_comment] = ACTIONS(53), - }, - [1299] = { - [anon_sym_RBRACE] = ACTIONS(3866), - [sym_comment] = ACTIONS(53), - }, - [1300] = { - [sym_concatenation] = STATE(1709), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1709), - [anon_sym_RBRACE] = ACTIONS(3868), - [anon_sym_EQ] = ACTIONS(3870), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3872), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3870), - [anon_sym_COLON_QMARK] = ACTIONS(3870), - [anon_sym_COLON_DASH] = ACTIONS(3870), - [anon_sym_PERCENT] = ACTIONS(3870), - [anon_sym_DASH] = ACTIONS(3870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1301] = { - [sym__simple_heredoc_body] = ACTIONS(3874), - [sym__heredoc_body_beginning] = ACTIONS(3874), - [sym_file_descriptor] = ACTIONS(3874), - [sym__concat] = ACTIONS(3874), - [anon_sym_esac] = ACTIONS(3876), - [anon_sym_PIPE] = ACTIONS(3876), - [anon_sym_RPAREN] = ACTIONS(3876), - [anon_sym_SEMI_SEMI] = ACTIONS(3876), - [anon_sym_PIPE_AMP] = ACTIONS(3876), - [anon_sym_AMP_AMP] = ACTIONS(3876), - [anon_sym_PIPE_PIPE] = ACTIONS(3876), - [anon_sym_EQ_TILDE] = ACTIONS(3876), - [anon_sym_EQ_EQ] = ACTIONS(3876), - [anon_sym_LT] = ACTIONS(3876), - [anon_sym_GT] = ACTIONS(3876), - [anon_sym_GT_GT] = ACTIONS(3876), - [anon_sym_AMP_GT] = ACTIONS(3876), - [anon_sym_AMP_GT_GT] = ACTIONS(3876), - [anon_sym_LT_AMP] = ACTIONS(3876), - [anon_sym_GT_AMP] = ACTIONS(3876), - [anon_sym_LT_LT] = ACTIONS(3876), - [anon_sym_LT_LT_DASH] = ACTIONS(3876), - [anon_sym_LT_LT_LT] = ACTIONS(3876), - [sym__special_characters] = ACTIONS(3876), - [anon_sym_DQUOTE] = ACTIONS(3876), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym_raw_string] = ACTIONS(3876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), - [anon_sym_BQUOTE] = ACTIONS(3876), - [anon_sym_LT_LPAREN] = ACTIONS(3876), - [anon_sym_GT_LPAREN] = ACTIONS(3876), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LF] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3876), - }, - [1302] = { - [sym_concatenation] = STATE(1711), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1711), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_EQ] = ACTIONS(3880), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3882), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3880), - [anon_sym_COLON_QMARK] = ACTIONS(3880), - [anon_sym_COLON_DASH] = ACTIONS(3880), - [anon_sym_PERCENT] = ACTIONS(3880), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1303] = { - [sym__simple_heredoc_body] = ACTIONS(3884), - [sym__heredoc_body_beginning] = ACTIONS(3884), - [sym_file_descriptor] = ACTIONS(3884), - [sym__concat] = ACTIONS(3884), - [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), - [anon_sym_EQ_TILDE] = ACTIONS(3886), - [anon_sym_EQ_EQ] = ACTIONS(3886), - [anon_sym_LT] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3886), - [anon_sym_GT_GT] = ACTIONS(3886), - [anon_sym_AMP_GT] = ACTIONS(3886), - [anon_sym_AMP_GT_GT] = ACTIONS(3886), - [anon_sym_LT_AMP] = ACTIONS(3886), - [anon_sym_GT_AMP] = ACTIONS(3886), - [anon_sym_LT_LT] = ACTIONS(3886), - [anon_sym_LT_LT_DASH] = ACTIONS(3886), - [anon_sym_LT_LT_LT] = ACTIONS(3886), - [sym__special_characters] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym_raw_string] = ACTIONS(3886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), - [anon_sym_BQUOTE] = ACTIONS(3886), - [anon_sym_LT_LPAREN] = ACTIONS(3886), - [anon_sym_GT_LPAREN] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LF] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3886), - }, - [1304] = { - [sym_concatenation] = STATE(1713), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1713), - [anon_sym_RBRACE] = ACTIONS(3888), - [anon_sym_EQ] = ACTIONS(3890), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(3890), - [anon_sym_COLON_QMARK] = ACTIONS(3890), - [anon_sym_COLON_DASH] = ACTIONS(3890), - [anon_sym_PERCENT] = ACTIONS(3890), - [anon_sym_DASH] = ACTIONS(3890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1305] = { - [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), - }, - [1306] = { - [aux_sym_concatenation_repeat1] = STATE(1306), - [sym__concat] = ACTIONS(3894), - [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), - }, - [1307] = { - [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), - }, - [1308] = { - [anon_sym_DQUOTE] = ACTIONS(3897), - [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), - }, - [1309] = { - [sym_concatenation] = STATE(1718), - [sym_string] = STATE(1717), - [sym_simple_expansion] = STATE(1717), - [sym_string_expansion] = STATE(1717), - [sym_expansion] = STATE(1717), - [sym_command_substitution] = STATE(1717), - [sym_process_substitution] = STATE(1717), - [anon_sym_RBRACE] = ACTIONS(3899), - [sym__special_characters] = ACTIONS(3901), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3903), - [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(3903), - }, - [1310] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(3905), - [sym_comment] = ACTIONS(53), - }, - [1311] = { [sym_concatenation] = STATE(1722), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -40659,1197 +41267,880 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1722), - [anon_sym_RBRACE] = ACTIONS(3907), - [anon_sym_EQ] = ACTIONS(3909), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_COLON_QMARK] = ACTIONS(3909), - [anon_sym_COLON_DASH] = ACTIONS(3909), - [anon_sym_PERCENT] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(3869), + [anon_sym_EQ] = ACTIONS(3871), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3871), + [anon_sym_COLON_QMARK] = ACTIONS(3871), + [anon_sym_COLON_DASH] = ACTIONS(3871), + [anon_sym_PERCENT] = ACTIONS(3871), + [anon_sym_DASH] = ACTIONS(3871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1288] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2987), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym__string_content] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(2987), + [sym_comment] = ACTIONS(243), + }, + [1289] = { + [sym_concatenation] = STATE(1724), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1724), + [anon_sym_RBRACE] = ACTIONS(3875), + [anon_sym_EQ] = ACTIONS(3877), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3877), + [anon_sym_COLON_QMARK] = ACTIONS(3877), + [anon_sym_COLON_DASH] = ACTIONS(3877), + [anon_sym_PERCENT] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1290] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym__string_content] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3032), + [anon_sym_BQUOTE] = ACTIONS(3032), + [sym_comment] = ACTIONS(243), + }, + [1291] = { + [sym_concatenation] = STATE(1726), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1726), + [anon_sym_RBRACE] = ACTIONS(3881), + [anon_sym_EQ] = ACTIONS(3883), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1292] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym__string_content] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3042), + [anon_sym_BQUOTE] = ACTIONS(3042), + [sym_comment] = ACTIONS(243), + }, + [1293] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(3887), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1294] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(3887), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1295] = { + [sym_string] = STATE(662), + [sym_simple_expansion] = STATE(662), + [sym_string_expansion] = STATE(662), + [sym_expansion] = STATE(662), + [sym_command_substitution] = STATE(662), + [sym_process_substitution] = STATE(662), + [anon_sym_RBRACK] = ACTIONS(3889), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1255), + [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(1255), + }, + [1296] = { + [sym__concat] = ACTIONS(3891), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_EQ] = ACTIONS(3893), + [sym__special_characters] = ACTIONS(3893), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(3893), + [sym_raw_string] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(2006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2006), + [anon_sym_SLASH] = ACTIONS(2006), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_COLON_QMARK] = ACTIONS(3893), + [anon_sym_COLON_DASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2006), + [anon_sym_BQUOTE] = ACTIONS(2006), + [anon_sym_LT_LPAREN] = ACTIONS(2006), + [anon_sym_GT_LPAREN] = ACTIONS(2006), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(3893), + }, + [1297] = { + [sym_string] = STATE(662), + [sym_simple_expansion] = STATE(662), + [sym_string_expansion] = STATE(662), + [sym_expansion] = STATE(662), + [sym_command_substitution] = STATE(662), + [sym_process_substitution] = STATE(662), + [anon_sym_RBRACK] = ACTIONS(3895), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(119), + [sym_raw_string] = ACTIONS(1255), + [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(1255), + }, + [1298] = { + [sym__concat] = ACTIONS(3897), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_EQ] = ACTIONS(3899), + [sym__special_characters] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(3899), + [sym_raw_string] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(2012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2012), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_DASH] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2012), + [anon_sym_BQUOTE] = ACTIONS(2012), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(3899), + }, + [1299] = { + [anon_sym_RBRACK] = ACTIONS(3895), + [sym_comment] = ACTIONS(53), + }, + [1300] = { + [sym_string] = STATE(1732), + [sym_simple_expansion] = STATE(1732), + [sym_string_expansion] = STATE(1732), + [sym_expansion] = STATE(1732), + [sym_command_substitution] = STATE(1732), + [sym_process_substitution] = STATE(1732), + [sym__special_characters] = ACTIONS(3901), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(3901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3901), + }, + [1301] = { + [sym__simple_heredoc_body] = ACTIONS(3903), + [sym__heredoc_body_beginning] = ACTIONS(3903), + [sym_file_descriptor] = ACTIONS(3903), + [sym__concat] = ACTIONS(3903), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3903), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [anon_sym_EQ_TILDE] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_GT_GT] = ACTIONS(3903), + [anon_sym_AMP_GT] = ACTIONS(3905), + [anon_sym_AMP_GT_GT] = ACTIONS(3903), + [anon_sym_LT_AMP] = ACTIONS(3903), + [anon_sym_GT_AMP] = ACTIONS(3903), + [anon_sym_LT_LT] = ACTIONS(3905), + [anon_sym_LT_LT_DASH] = ACTIONS(3903), + [anon_sym_LT_LT_LT] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + }, + [1302] = { + [aux_sym_concatenation_repeat1] = STATE(1733), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + }, + [1303] = { + [sym__concat] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + }, + [1304] = { + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [1305] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(3909), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [1306] = { + [sym__concat] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + }, + [1307] = { + [sym__concat] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(735), + [sym_comment] = ACTIONS(53), + }, + [1308] = { + [sym__concat] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + }, + [1309] = { + [sym__simple_heredoc_body] = ACTIONS(3911), + [sym__heredoc_body_beginning] = ACTIONS(3911), + [sym_file_descriptor] = ACTIONS(3911), + [sym__concat] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [anon_sym_EQ_EQ] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_AMP_GT] = ACTIONS(3913), + [anon_sym_AMP_GT_GT] = ACTIONS(3911), + [anon_sym_LT_AMP] = ACTIONS(3911), + [anon_sym_GT_AMP] = ACTIONS(3911), + [anon_sym_LT_LT] = ACTIONS(3913), + [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(3913), + [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(53), + [sym_word] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [1310] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(3915), + [sym_comment] = ACTIONS(53), + }, + [1311] = { + [sym_subscript] = STATE(1740), + [sym_variable_name] = ACTIONS(3917), + [anon_sym_DOLLAR] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3919), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AT] = ACTIONS(3919), + [anon_sym_QMARK] = ACTIONS(3919), + [anon_sym_0] = ACTIONS(3923), + [anon_sym__] = ACTIONS(3923), }, [1312] = { - [sym_concatenation] = STATE(1725), + [sym_concatenation] = STATE(1743), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1725), - [anon_sym_RBRACE] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3917), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3921), - [anon_sym_COLON] = ACTIONS(3917), - [anon_sym_COLON_QMARK] = ACTIONS(3917), - [anon_sym_COLON_DASH] = ACTIONS(3917), - [anon_sym_PERCENT] = ACTIONS(3917), - [anon_sym_DASH] = ACTIONS(3917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1743), + [anon_sym_RBRACE] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3927), + [anon_sym_COLON_QMARK] = ACTIONS(3927), + [anon_sym_COLON_DASH] = ACTIONS(3927), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_DASH] = ACTIONS(3927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1313] = { - [sym_concatenation] = STATE(1727), + [sym_concatenation] = STATE(1746), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1727), - [anon_sym_RBRACE] = ACTIONS(3899), - [anon_sym_EQ] = ACTIONS(3923), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(3927), - [anon_sym_COLON] = ACTIONS(3923), - [anon_sym_COLON_QMARK] = ACTIONS(3923), - [anon_sym_COLON_DASH] = ACTIONS(3923), - [anon_sym_PERCENT] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1746), + [anon_sym_RBRACE] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3935), + [anon_sym_COLON_QMARK] = ACTIONS(3935), + [anon_sym_COLON_DASH] = ACTIONS(3935), + [anon_sym_PERCENT] = ACTIONS(3935), + [anon_sym_DASH] = ACTIONS(3935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1314] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(1774), - [sym__special_characters] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(1772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), - [anon_sym_COLON] = ACTIONS(1774), - [anon_sym_COLON_QMARK] = ACTIONS(1774), - [anon_sym_COLON_DASH] = ACTIONS(1774), - [anon_sym_PERCENT] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_LT_LPAREN] = ACTIONS(1772), - [anon_sym_GT_LPAREN] = ACTIONS(1772), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1774), + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1749), + [anon_sym_RBRACE] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3943), + [anon_sym_COLON_QMARK] = ACTIONS(3943), + [anon_sym_COLON_DASH] = ACTIONS(3943), + [anon_sym_PERCENT] = ACTIONS(3943), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1315] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3929), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3949), + [anon_sym_SEMI_SEMI] = ACTIONS(3951), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LF] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3953), }, [1316] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3931), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3949), + [anon_sym_SEMI_SEMI] = ACTIONS(3951), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LF] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3953), }, [1317] = { - [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), + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1752), + [sym_c_style_for_statement] = STATE(1752), + [sym_while_statement] = STATE(1752), + [sym_if_statement] = STATE(1752), + [sym_case_statement] = STATE(1752), + [sym_function_definition] = STATE(1752), + [sym_subshell] = STATE(1752), + [sym_pipeline] = STATE(1752), + [sym_list] = STATE(1752), + [sym_negated_command] = STATE(1752), + [sym_test_command] = STATE(1752), + [sym_declaration_command] = STATE(1752), + [sym_unset_command] = STATE(1752), + [sym_command] = STATE(1752), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1753), + [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), }, [1318] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3933), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(3955), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(3949), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), }, [1319] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3935), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(3955), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(3949), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3957), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3957), }, [1320] = { - [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), + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1755), + [sym_c_style_for_statement] = STATE(1755), + [sym_while_statement] = STATE(1755), + [sym_if_statement] = STATE(1755), + [sym_case_statement] = STATE(1755), + [sym_function_definition] = STATE(1755), + [sym_subshell] = STATE(1755), + [sym_pipeline] = STATE(1755), + [sym_list] = STATE(1755), + [sym_negated_command] = STATE(1755), + [sym_test_command] = STATE(1755), + [sym_declaration_command] = STATE(1755), + [sym_unset_command] = STATE(1755), + [sym_command] = STATE(1755), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(1756), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), }, [1321] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3937), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3959), + [anon_sym_SEMI_SEMI] = ACTIONS(3961), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LF] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3963), }, [1322] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3899), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(3959), + [anon_sym_SEMI_SEMI] = ACTIONS(3961), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(3963), + [anon_sym_LF] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3963), }, [1323] = { - [sym__simple_heredoc_body] = ACTIONS(3939), - [sym__heredoc_body_beginning] = ACTIONS(3939), - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_EQ_TILDE] = ACTIONS(3941), - [anon_sym_EQ_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3941), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(1759), + [sym_c_style_for_statement] = STATE(1759), + [sym_while_statement] = STATE(1759), + [sym_if_statement] = STATE(1759), + [sym_case_statement] = STATE(1759), + [sym_function_definition] = STATE(1759), + [sym_subshell] = STATE(1759), + [sym_pipeline] = STATE(1759), + [sym_list] = STATE(1759), + [sym_negated_command] = STATE(1759), + [sym_test_command] = STATE(1759), + [sym_declaration_command] = STATE(1759), + [sym_unset_command] = STATE(1759), + [sym_command] = STATE(1759), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(1760), + [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), }, [1324] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3965), + [sym_comment] = ACTIONS(53), }, [1325] = { - [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), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(3967), + [sym_comment] = ACTIONS(53), }, [1326] = { - [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(3945), - [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), + [anon_sym_RBRACE] = ACTIONS(3967), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), }, [1327] = { - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [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(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3949), - }, - [1328] = { - [sym_file_descriptor] = ACTIONS(323), - [sym_variable_name] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3949), - [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(3949), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3949), - }, - [1329] = { - [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(3945), - [anon_sym_LT_LPAREN] = ACTIONS(817), - [anon_sym_GT_LPAREN] = ACTIONS(817), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), - }, - [1330] = { - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_SEMI_SEMI] = ACTIONS(3953), - [anon_sym_PIPE_AMP] = ACTIONS(795), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3953), - }, - [1331] = { - [sym_file_descriptor] = ACTIONS(323), - [sym_variable_name] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_SEMI_SEMI] = ACTIONS(3953), - [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(3947), - [anon_sym_LT_LPAREN] = ACTIONS(325), - [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(3953), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3953), - }, - [1332] = { - [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), - }, - [1333] = { - [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(3957), - [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), - }, - [1334] = { - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(3959), - [anon_sym_SEMI_SEMI] = ACTIONS(3961), - [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(3961), - [anon_sym_LF] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3961), - }, - [1335] = { - [sym_file_descriptor] = ACTIONS(323), - [sym_variable_name] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(3959), - [anon_sym_SEMI_SEMI] = ACTIONS(3961), - [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(3961), - [anon_sym_LF] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3961), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(3975), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(4011), - [sym_comment] = ACTIONS(53), - }, - [1358] = { - [sym_concatenation] = STATE(1759), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1759), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_EQ] = ACTIONS(4015), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4019), - [anon_sym_COLON] = ACTIONS(4015), - [anon_sym_COLON_QMARK] = ACTIONS(4015), - [anon_sym_COLON_DASH] = ACTIONS(4015), - [anon_sym_PERCENT] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1359] = { - [sym_concatenation] = STATE(1762), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1762), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_EQ] = ACTIONS(4023), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4027), - [anon_sym_COLON] = ACTIONS(4023), - [anon_sym_COLON_QMARK] = ACTIONS(4023), - [anon_sym_COLON_DASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1360] = { [sym_concatenation] = STATE(1764), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -41858,1412 +42149,2868 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1764), - [anon_sym_RBRACE] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4029), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4033), - [anon_sym_COLON] = ACTIONS(4029), - [anon_sym_COLON_QMARK] = ACTIONS(4029), - [anon_sym_COLON_DASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3971), + [anon_sym_COLON_QMARK] = ACTIONS(3971), + [anon_sym_COLON_DASH] = ACTIONS(3971), + [anon_sym_PERCENT] = ACTIONS(3971), + [anon_sym_DASH] = ACTIONS(3971), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1328] = { + [sym__simple_heredoc_body] = ACTIONS(3975), + [sym__heredoc_body_beginning] = ACTIONS(3975), + [sym_file_descriptor] = ACTIONS(3975), + [sym__concat] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3975), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_EQ_TILDE] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3977), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_GT] = ACTIONS(3975), + [anon_sym_AMP_GT] = ACTIONS(3977), + [anon_sym_AMP_GT_GT] = ACTIONS(3975), + [anon_sym_LT_AMP] = ACTIONS(3975), + [anon_sym_GT_AMP] = ACTIONS(3975), + [anon_sym_LT_LT] = ACTIONS(3977), + [anon_sym_LT_LT_DASH] = ACTIONS(3975), + [anon_sym_LT_LT_LT] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), + }, + [1329] = { + [sym_concatenation] = STATE(1766), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1766), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_EQ] = ACTIONS(3981), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3983), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3981), + [anon_sym_COLON_QMARK] = ACTIONS(3981), + [anon_sym_COLON_DASH] = ACTIONS(3981), + [anon_sym_PERCENT] = ACTIONS(3981), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1330] = { + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3987), + [anon_sym_EQ_EQ] = ACTIONS(3987), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3987), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [1331] = { + [sym_concatenation] = STATE(1768), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1768), + [anon_sym_RBRACE] = ACTIONS(3989), + [anon_sym_EQ] = ACTIONS(3991), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(3993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(3991), + [anon_sym_COLON_QMARK] = ACTIONS(3991), + [anon_sym_COLON_DASH] = ACTIONS(3991), + [anon_sym_PERCENT] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3991), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1332] = { + [sym__concat] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [sym__special_characters] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_POUND] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_COLON] = ACTIONS(1666), + [anon_sym_COLON_QMARK] = ACTIONS(1666), + [anon_sym_COLON_DASH] = ACTIONS(1666), + [anon_sym_PERCENT] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(1666), + }, + [1333] = { + [aux_sym_concatenation_repeat1] = STATE(1333), + [sym__concat] = ACTIONS(3995), + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [sym__special_characters] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_POUND] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_COLON] = ACTIONS(1666), + [anon_sym_COLON_QMARK] = ACTIONS(1666), + [anon_sym_COLON_DASH] = ACTIONS(1666), + [anon_sym_PERCENT] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(1666), + }, + [1334] = { + [sym__concat] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1673), + [sym__special_characters] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_COLON] = ACTIONS(1673), + [anon_sym_COLON_QMARK] = ACTIONS(1673), + [anon_sym_COLON_DASH] = ACTIONS(1673), + [anon_sym_PERCENT] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(1673), + }, + [1335] = { + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [1336] = { + [sym_concatenation] = STATE(1773), + [sym_string] = STATE(1772), + [sym_simple_expansion] = STATE(1772), + [sym_string_expansion] = STATE(1772), + [sym_expansion] = STATE(1772), + [sym_command_substitution] = STATE(1772), + [sym_process_substitution] = STATE(1772), + [anon_sym_RBRACE] = ACTIONS(4000), + [sym__special_characters] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4004), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4004), + }, + [1337] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(4006), + [sym_comment] = ACTIONS(53), + }, + [1338] = { + [sym_concatenation] = STATE(1777), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1777), + [anon_sym_RBRACE] = ACTIONS(4008), + [anon_sym_EQ] = ACTIONS(4010), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4014), + [anon_sym_COLON] = ACTIONS(4010), + [anon_sym_COLON_QMARK] = ACTIONS(4010), + [anon_sym_COLON_DASH] = ACTIONS(4010), + [anon_sym_PERCENT] = ACTIONS(4010), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1339] = { + [sym_concatenation] = STATE(1780), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1780), + [anon_sym_RBRACE] = ACTIONS(4016), + [anon_sym_EQ] = ACTIONS(4018), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4022), + [anon_sym_COLON] = ACTIONS(4018), + [anon_sym_COLON_QMARK] = ACTIONS(4018), + [anon_sym_COLON_DASH] = ACTIONS(4018), + [anon_sym_PERCENT] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1340] = { + [sym_concatenation] = STATE(1782), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1782), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4024), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COLON_QMARK] = ACTIONS(4024), + [anon_sym_COLON_DASH] = ACTIONS(4024), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1341] = { + [sym__concat] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(1790), + [sym__special_characters] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_COLON_QMARK] = ACTIONS(1790), + [anon_sym_COLON_DASH] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(1790), + }, + [1342] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4030), + }, + [1343] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1344] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [sym_raw_string] = ACTIONS(1832), + [anon_sym_POUND] = ACTIONS(1832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [anon_sym_COLON] = ACTIONS(1834), + [anon_sym_COLON_QMARK] = ACTIONS(1834), + [anon_sym_COLON_DASH] = ACTIONS(1834), + [anon_sym_PERCENT] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [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(243), + [sym_word] = ACTIONS(1834), + }, + [1345] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4034), + }, + [1346] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1347] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1842), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_COLON] = ACTIONS(1842), + [anon_sym_COLON_QMARK] = ACTIONS(1842), + [anon_sym_COLON_DASH] = ACTIONS(1842), + [anon_sym_PERCENT] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(1842), + }, + [1348] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4038), + }, + [1349] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1350] = { + [sym__simple_heredoc_body] = ACTIONS(4040), + [sym__heredoc_body_beginning] = ACTIONS(4040), + [sym_file_descriptor] = ACTIONS(4040), + [sym__concat] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_EQ_TILDE] = ACTIONS(4042), + [anon_sym_EQ_EQ] = ACTIONS(4042), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_GT_GT] = ACTIONS(4040), + [anon_sym_AMP_GT] = ACTIONS(4042), + [anon_sym_AMP_GT_GT] = ACTIONS(4040), + [anon_sym_LT_AMP] = ACTIONS(4040), + [anon_sym_GT_AMP] = ACTIONS(4040), + [anon_sym_LT_LT] = ACTIONS(4042), + [anon_sym_LT_LT_DASH] = ACTIONS(4040), + [anon_sym_LT_LT_LT] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), + }, + [1351] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1352] = { + [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(243), + [sym_word] = ACTIONS(1848), + }, + [1353] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1354] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4048), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_LF] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + }, + [1355] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4048), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_LF] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + }, + [1356] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(4046), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1357] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4052), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(4046), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_LF] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4054), + }, + [1358] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4052), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(4046), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_LF] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4054), + }, + [1359] = { + [sym__concat] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1880), + [sym__special_characters] = ACTIONS(1880), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_COLON] = ACTIONS(1880), + [anon_sym_COLON_QMARK] = ACTIONS(1880), + [anon_sym_COLON_DASH] = ACTIONS(1880), + [anon_sym_PERCENT] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(1880), + }, + [1360] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4056), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [1361] = { - [sym__heredoc_body_middle] = ACTIONS(1772), - [sym__heredoc_body_end] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4056), + [anon_sym_SEMI_SEMI] = ACTIONS(4058), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_LF] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4060), }, [1362] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4035), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4056), + [anon_sym_SEMI_SEMI] = ACTIONS(4058), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_LF] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4060), }, [1363] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4037), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__simple_heredoc_body] = ACTIONS(4062), + [sym__heredoc_body_beginning] = ACTIONS(4062), + [sym_file_descriptor] = ACTIONS(4062), + [sym__concat] = ACTIONS(4062), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4062), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [anon_sym_EQ_TILDE] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4064), + [anon_sym_GT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_AMP_GT] = ACTIONS(4064), + [anon_sym_AMP_GT_GT] = ACTIONS(4062), + [anon_sym_LT_AMP] = ACTIONS(4062), + [anon_sym_GT_AMP] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_LT_LT_DASH] = ACTIONS(4062), + [anon_sym_LT_LT_LT] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4066), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1365] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4039), + [sym__simple_heredoc_body] = ACTIONS(4068), + [sym__heredoc_body_beginning] = ACTIONS(4068), + [sym_file_descriptor] = ACTIONS(4068), + [sym__concat] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4068), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_EQ_TILDE] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_GT_GT] = ACTIONS(4068), + [anon_sym_AMP_GT] = ACTIONS(4070), + [anon_sym_AMP_GT_GT] = ACTIONS(4068), + [anon_sym_LT_AMP] = ACTIONS(4068), + [anon_sym_GT_AMP] = ACTIONS(4068), + [anon_sym_LT_LT] = ACTIONS(4070), + [anon_sym_LT_LT_DASH] = ACTIONS(4068), + [anon_sym_LT_LT_LT] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), }, [1366] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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__simple_heredoc_body] = ACTIONS(4074), + [sym__heredoc_body_beginning] = ACTIONS(4074), + [sym_file_descriptor] = ACTIONS(4074), + [sym__concat] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_EQ_TILDE] = ACTIONS(4076), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_AMP_GT] = ACTIONS(4076), + [anon_sym_AMP_GT_GT] = ACTIONS(4074), + [anon_sym_LT_AMP] = ACTIONS(4074), + [anon_sym_GT_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_LT_LT_DASH] = ACTIONS(4074), + [anon_sym_LT_LT_LT] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), }, [1368] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4043), + [sym_file_redirect] = STATE(910), + [sym_heredoc_redirect] = STATE(910), + [sym_heredoc_body] = STATE(1064), + [sym_herestring_redirect] = STATE(910), + [aux_sym_while_statement_repeat1] = STATE(910), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_SEMI_SEMI] = ACTIONS(2256), + [anon_sym_PIPE_AMP] = ACTIONS(2256), + [anon_sym_AMP_AMP] = ACTIONS(2256), + [anon_sym_PIPE_PIPE] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(2256), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_LF] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2258), }, [1369] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_compound_statement] = STATE(1796), + [anon_sym_LBRACE] = ACTIONS(441), + [sym_comment] = ACTIONS(53), }, [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), + [anon_sym_LT] = ACTIONS(4078), + [anon_sym_GT] = ACTIONS(4078), + [anon_sym_GT_GT] = ACTIONS(4080), + [anon_sym_AMP_GT] = ACTIONS(4078), + [anon_sym_AMP_GT_GT] = ACTIONS(4080), + [anon_sym_LT_AMP] = ACTIONS(4080), + [anon_sym_GT_AMP] = ACTIONS(4080), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(1114), + [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), + [sym__special_characters] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(4084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4084), }, [1372] = { - [anon_sym_EQ] = ACTIONS(4049), - [anon_sym_PLUS_EQ] = ACTIONS(4049), + [anon_sym_LT] = ACTIONS(4086), + [anon_sym_GT] = ACTIONS(4086), + [anon_sym_GT_GT] = ACTIONS(4088), + [anon_sym_AMP_GT] = ACTIONS(4086), + [anon_sym_AMP_GT_GT] = ACTIONS(4088), + [anon_sym_LT_AMP] = ACTIONS(4088), + [anon_sym_GT_AMP] = ACTIONS(4088), [sym_comment] = ACTIONS(53), }, [1373] = { - [anon_sym_EQ] = ACTIONS(4051), - [anon_sym_PLUS_EQ] = ACTIONS(4051), + [sym_concatenation] = STATE(1170), + [sym_string] = STATE(1802), + [sym_simple_expansion] = STATE(1802), + [sym_string_expansion] = STATE(1802), + [sym_expansion] = STATE(1802), + [sym_command_substitution] = STATE(1802), + [sym_process_substitution] = STATE(1802), + [sym__special_characters] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(4092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4092), }, [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_concatenation] = STATE(1174), + [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(4094), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(4096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1648), + [sym_word] = ACTIONS(4096), }, [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_file_redirect] = STATE(1805), + [sym_heredoc_redirect] = STATE(1805), + [sym_herestring_redirect] = STATE(1805), + [aux_sym_while_statement_repeat1] = STATE(1805), + [sym_file_descriptor] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SEMI_SEMI] = ACTIONS(2553), + [anon_sym_PIPE_AMP] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_PIPE_PIPE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3058), + [anon_sym_AMP_GT] = ACTIONS(3056), + [anon_sym_AMP_GT_GT] = ACTIONS(3058), + [anon_sym_LT_AMP] = ACTIONS(3058), + [anon_sym_GT_AMP] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(1321), + [anon_sym_LT_LT_DASH] = ACTIONS(1323), + [anon_sym_LT_LT_LT] = ACTIONS(3060), + [anon_sym_BQUOTE] = ACTIONS(2553), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LF] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), }, [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_file_redirect] = STATE(1382), + [sym_file_descriptor] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_SEMI_SEMI] = ACTIONS(2373), + [anon_sym_PIPE_AMP] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_GT] = ACTIONS(3050), + [anon_sym_AMP_GT_GT] = ACTIONS(3052), + [anon_sym_LT_AMP] = ACTIONS(3052), + [anon_sym_GT_AMP] = ACTIONS(3052), + [anon_sym_BQUOTE] = ACTIONS(2373), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2375), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1379), + [sym__simple_heredoc_body] = ACTIONS(981), + [sym__heredoc_body_beginning] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1379), + [sym__simple_heredoc_body] = ACTIONS(985), + [sym__heredoc_body_beginning] = ACTIONS(985), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), }, [1379] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(4064), + [aux_sym_concatenation_repeat1] = STATE(1806), + [sym__simple_heredoc_body] = ACTIONS(695), + [sym__heredoc_body_beginning] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(227), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [1380] = { - [sym_concatenation] = STATE(1778), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1778), - [anon_sym_RBRACE] = ACTIONS(4066), - [anon_sym_EQ] = ACTIONS(4068), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4072), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_file_redirect] = STATE(910), + [sym_heredoc_redirect] = STATE(910), + [sym_heredoc_body] = STATE(1398), + [sym_herestring_redirect] = STATE(910), + [aux_sym_while_statement_repeat1] = STATE(910), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(3135), + [anon_sym_SEMI_SEMI] = ACTIONS(3133), + [anon_sym_PIPE_AMP] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_PIPE_PIPE] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(823), + [anon_sym_BQUOTE] = ACTIONS(3133), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3135), }, [1381] = { - [sym_concatenation] = STATE(1781), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1781), - [anon_sym_RBRACE] = ACTIONS(4074), - [anon_sym_EQ] = ACTIONS(4076), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4078), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4080), - [anon_sym_COLON] = ACTIONS(4076), - [anon_sym_COLON_QMARK] = ACTIONS(4076), - [anon_sym_COLON_DASH] = ACTIONS(4076), - [anon_sym_PERCENT] = ACTIONS(4076), - [anon_sym_DASH] = ACTIONS(4076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__simple_heredoc_body] = ACTIONS(4098), + [sym__heredoc_body_beginning] = ACTIONS(4098), + [sym_file_descriptor] = ACTIONS(4098), + [sym__concat] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_EQ_TILDE] = ACTIONS(4100), + [anon_sym_EQ_EQ] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_GT_GT] = ACTIONS(4098), + [anon_sym_AMP_GT] = ACTIONS(4100), + [anon_sym_AMP_GT_GT] = ACTIONS(4098), + [anon_sym_LT_AMP] = ACTIONS(4098), + [anon_sym_GT_AMP] = ACTIONS(4098), + [anon_sym_LT_LT] = ACTIONS(4100), + [anon_sym_LT_LT_DASH] = ACTIONS(4098), + [anon_sym_LT_LT_LT] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), }, [1382] = { - [sym_concatenation] = STATE(1783), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1783), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_EQ] = ACTIONS(4082), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_COLON] = ACTIONS(4082), - [anon_sym_COLON_QMARK] = ACTIONS(4082), - [anon_sym_COLON_DASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(3567), + [anon_sym_PIPE] = ACTIONS(3565), + [anon_sym_RPAREN] = ACTIONS(3567), + [anon_sym_SEMI_SEMI] = ACTIONS(3567), + [anon_sym_PIPE_AMP] = ACTIONS(3567), + [anon_sym_AMP_AMP] = ACTIONS(3567), + [anon_sym_PIPE_PIPE] = ACTIONS(3567), + [anon_sym_BQUOTE] = ACTIONS(3567), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3565), + [anon_sym_LF] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), }, [1383] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [sym__special_characters] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_LT_LPAREN] = ACTIONS(1772), - [anon_sym_GT_LPAREN] = ACTIONS(1772), + [sym_concatenation] = STATE(1810), + [sym_string] = STATE(1809), + [sym_simple_expansion] = STATE(1809), + [sym_string_expansion] = STATE(1809), + [sym_expansion] = STATE(1809), + [sym_command_substitution] = STATE(1809), + [sym_process_substitution] = STATE(1809), + [anon_sym_RBRACE] = ACTIONS(4102), + [sym__special_characters] = ACTIONS(4104), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1772), + [sym_word] = ACTIONS(4106), }, [1384] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(4108), + [sym_comment] = ACTIONS(53), }, [1385] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(1814), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1814), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(4112), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4116), + [anon_sym_COLON] = ACTIONS(4112), + [anon_sym_COLON_QMARK] = ACTIONS(4112), + [anon_sym_COLON_DASH] = ACTIONS(4112), + [anon_sym_PERCENT] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym_concatenation] = STATE(1817), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1817), + [anon_sym_RBRACE] = ACTIONS(4118), + [anon_sym_EQ] = ACTIONS(4120), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4124), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1387] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4092), + [sym_concatenation] = STATE(1819), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1819), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(4126), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4130), + [anon_sym_COLON] = ACTIONS(4126), + [anon_sym_COLON_QMARK] = ACTIONS(4126), + [anon_sym_COLON_DASH] = ACTIONS(4126), + [anon_sym_PERCENT] = ACTIONS(4126), + [anon_sym_DASH] = ACTIONS(4126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1388] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4094), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__heredoc_body_middle] = ACTIONS(1788), + [sym__heredoc_body_end] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), }, [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), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4132), }, [1390] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4096), - }, - [1391] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4134), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1391] = { + [sym__heredoc_body_middle] = ACTIONS(1832), + [sym__heredoc_body_end] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), }, [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), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4136), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__heredoc_body_middle] = ACTIONS(1840), + [sym__heredoc_body_end] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), }, [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), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4140), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1397), + [sym__simple_heredoc_body] = ACTIONS(1664), + [sym__heredoc_body_beginning] = ACTIONS(1664), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [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), + [anon_sym_esac] = ACTIONS(4142), + [anon_sym_PIPE] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4142), + [anon_sym_SEMI_SEMI] = ACTIONS(4142), + [anon_sym_PIPE_AMP] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_PIPE_PIPE] = ACTIONS(4142), + [anon_sym_BQUOTE] = ACTIONS(4142), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_LF] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4144), }, [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), + [anon_sym_EQ] = ACTIONS(4146), + [anon_sym_PLUS_EQ] = ACTIONS(4146), [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), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_PLUS_EQ] = ACTIONS(4148), [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), + [sym__concat] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1664), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1402), + [sym__concat] = ACTIONS(4150), + [anon_sym_RPAREN] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1664), }, [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), + [sym__concat] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1671), }, [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), + [anon_sym_DQUOTE] = ACTIONS(4153), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [1405] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4118), + [sym_concatenation] = STATE(1829), + [sym_string] = STATE(1828), + [sym_simple_expansion] = STATE(1828), + [sym_string_expansion] = STATE(1828), + [sym_expansion] = STATE(1828), + [sym_command_substitution] = STATE(1828), + [sym_process_substitution] = STATE(1828), + [anon_sym_RBRACE] = ACTIONS(4155), + [sym__special_characters] = ACTIONS(4157), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4159), }, [1406] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(4161), [sym_comment] = ACTIONS(53), }, [1407] = { - [anon_sym_RBRACE] = ACTIONS(4120), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1833), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1833), + [anon_sym_RBRACE] = ACTIONS(4163), + [anon_sym_EQ] = ACTIONS(4165), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4165), + [anon_sym_COLON_QMARK] = ACTIONS(4165), + [anon_sym_COLON_DASH] = ACTIONS(4165), + [anon_sym_PERCENT] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1408] = { - [sym_concatenation] = STATE(1798), - [sym_string] = STATE(1797), - [sym_simple_expansion] = STATE(1797), - [sym_string_expansion] = STATE(1797), - [sym_expansion] = STATE(1797), - [sym_command_substitution] = STATE(1797), - [sym_process_substitution] = STATE(1797), - [anon_sym_RBRACE] = ACTIONS(4120), - [sym__special_characters] = ACTIONS(4122), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(4124), - [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(4124), + [sym_concatenation] = STATE(1836), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1836), + [anon_sym_RBRACE] = ACTIONS(4171), + [anon_sym_EQ] = ACTIONS(4173), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4175), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4177), + [anon_sym_COLON] = ACTIONS(4173), + [anon_sym_COLON_QMARK] = ACTIONS(4173), + [anon_sym_COLON_DASH] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1409] = { - [sym_file_descriptor] = ACTIONS(2868), - [sym__concat] = ACTIONS(2868), - [sym_variable_name] = ACTIONS(2868), - [anon_sym_esac] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_GT] = ACTIONS(2870), - [anon_sym_AMP_GT_GT] = ACTIONS(2870), - [anon_sym_LT_AMP] = ACTIONS(2870), - [anon_sym_GT_AMP] = ACTIONS(2870), - [sym__special_characters] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym_raw_string] = ACTIONS(2870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [anon_sym_LT_LPAREN] = ACTIONS(2870), - [anon_sym_GT_LPAREN] = ACTIONS(2870), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), + [sym_concatenation] = STATE(1838), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1838), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_EQ] = ACTIONS(4179), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_COLON] = ACTIONS(4179), + [anon_sym_COLON_QMARK] = ACTIONS(4179), + [anon_sym_COLON_DASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_DASH] = ACTIONS(4179), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1410] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4126), + [sym__concat] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1788), }, [1411] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4128), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4185), }, [1412] = { - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [sym_variable_name] = ACTIONS(2876), - [anon_sym_esac] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [anon_sym_PIPE_AMP] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2878), - [anon_sym_LT_AMP] = ACTIONS(2878), - [anon_sym_GT_AMP] = ACTIONS(2878), - [sym__special_characters] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [anon_sym_LT_LPAREN] = ACTIONS(2878), - [anon_sym_GT_LPAREN] = ACTIONS(2878), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1413] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4130), + [sym__concat] = ACTIONS(1832), + [anon_sym_RPAREN] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [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(53), + [sym_word] = ACTIONS(1832), }, [1414] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4132), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4189), }, [1415] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4134), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4191), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1416] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4120), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1840), }, [1417] = { - [sym_concatenation] = STATE(1805), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1805), - [anon_sym_RBRACE] = ACTIONS(4136), - [anon_sym_EQ] = ACTIONS(4138), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4140), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4138), - [anon_sym_COLON_QMARK] = ACTIONS(4138), - [anon_sym_COLON_DASH] = ACTIONS(4138), - [anon_sym_PERCENT] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4193), }, [1418] = { - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [sym_variable_name] = ACTIONS(2948), - [anon_sym_esac] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2950), - [anon_sym_PIPE_AMP] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2950), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2950), - [anon_sym_LT_AMP] = ACTIONS(2950), - [anon_sym_GT_AMP] = ACTIONS(2950), - [sym__special_characters] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [anon_sym_LT_LPAREN] = ACTIONS(2950), - [anon_sym_GT_LPAREN] = ACTIONS(2950), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1419] = { - [sym_concatenation] = STATE(1807), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1807), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_EQ] = ACTIONS(4144), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [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), }, [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), + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4195), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [1421] = { - [sym_concatenation] = STATE(1809), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4195), + [anon_sym_SEMI_SEMI] = ACTIONS(4197), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_LF] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + }, + [1422] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4195), + [anon_sym_SEMI_SEMI] = ACTIONS(4197), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4199), + [anon_sym_LF] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + }, + [1423] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(4195), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1424] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4201), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(4195), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4203), + [anon_sym_LF] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + }, + [1425] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4201), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(4195), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4203), + [anon_sym_LF] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + }, + [1426] = { + [sym__concat] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1878), + }, + [1427] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4205), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1428] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4205), + [anon_sym_SEMI_SEMI] = ACTIONS(4207), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4209), + [anon_sym_LF] = ACTIONS(4207), + [anon_sym_AMP] = ACTIONS(4209), + }, + [1429] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4205), + [anon_sym_SEMI_SEMI] = ACTIONS(4207), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4209), + [anon_sym_LF] = ACTIONS(4207), + [anon_sym_AMP] = ACTIONS(4209), + }, + [1430] = { + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [sym_variable_name] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [1431] = { + [sym_file_descriptor] = ACTIONS(2869), + [sym__concat] = ACTIONS(2869), + [sym_variable_name] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_AMP_GT] = ACTIONS(2871), + [anon_sym_AMP_GT_GT] = ACTIONS(2869), + [anon_sym_LT_AMP] = ACTIONS(2869), + [anon_sym_GT_AMP] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + }, + [1432] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4211), + [sym_comment] = ACTIONS(53), + }, + [1433] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4213), + [sym_comment] = ACTIONS(53), + }, + [1434] = { + [anon_sym_RBRACE] = ACTIONS(4213), + [sym_comment] = ACTIONS(53), + }, + [1435] = { + [sym_concatenation] = STATE(1853), + [sym_string] = STATE(1852), + [sym_simple_expansion] = STATE(1852), + [sym_string_expansion] = STATE(1852), + [sym_expansion] = STATE(1852), + [sym_command_substitution] = STATE(1852), + [sym_process_substitution] = STATE(1852), + [anon_sym_RBRACE] = ACTIONS(4213), + [sym__special_characters] = ACTIONS(4215), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4217), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4217), + }, + [1436] = { + [sym_file_descriptor] = ACTIONS(2905), + [sym__concat] = ACTIONS(2905), + [sym_variable_name] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2907), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + }, + [1437] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4219), + }, + [1438] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1809), - [anon_sym_RBRACE] = ACTIONS(4148), - [anon_sym_EQ] = ACTIONS(4150), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4152), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4221), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [1439] = { + [sym_file_descriptor] = ACTIONS(2913), + [sym__concat] = ACTIONS(2913), + [sym_variable_name] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_GT] = ACTIONS(2915), + [anon_sym_AMP_GT_GT] = ACTIONS(2913), + [anon_sym_LT_AMP] = ACTIONS(2913), + [anon_sym_GT_AMP] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_word] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), }, - [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), + [1440] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4223), + }, + [1441] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1442] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4227), + }, + [1443] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4213), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1444] = { + [sym_concatenation] = STATE(1860), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1860), + [anon_sym_RBRACE] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(4231), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_COLON_QMARK] = ACTIONS(4231), + [anon_sym_COLON_DASH] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1445] = { + [sym_file_descriptor] = ACTIONS(2985), + [sym__concat] = ACTIONS(2985), + [sym_variable_name] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_GT] = ACTIONS(2987), + [anon_sym_AMP_GT_GT] = ACTIONS(2985), + [anon_sym_LT_AMP] = ACTIONS(2985), + [anon_sym_GT_AMP] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_word] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), }, - [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), + [1446] = { + [sym_concatenation] = STATE(1862), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1862), + [anon_sym_RBRACE] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4237), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4237), + [anon_sym_COLON_QMARK] = ACTIONS(4237), + [anon_sym_COLON_DASH] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [1447] = { + [sym_file_descriptor] = ACTIONS(3030), + [sym__concat] = ACTIONS(3030), + [sym_variable_name] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_RPAREN] = ACTIONS(3030), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_GT] = ACTIONS(3032), + [anon_sym_AMP_GT_GT] = ACTIONS(3030), + [anon_sym_LT_AMP] = ACTIONS(3030), + [anon_sym_GT_AMP] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_word] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), }, - [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), + [1448] = { + [sym_concatenation] = STATE(1864), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1864), + [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4243), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_COLON_QMARK] = ACTIONS(4243), + [anon_sym_COLON_DASH] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1449] = { + [sym_file_descriptor] = ACTIONS(3040), + [sym__concat] = ACTIONS(3040), + [sym_variable_name] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_RPAREN] = ACTIONS(3040), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_GT] = ACTIONS(3042), + [anon_sym_AMP_GT_GT] = ACTIONS(3040), + [anon_sym_LT_AMP] = ACTIONS(3040), + [anon_sym_GT_AMP] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + }, + [1450] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4247), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1451] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1452] = { + [sym_file_descriptor] = ACTIONS(3078), + [sym__concat] = ACTIONS(3078), + [sym_variable_name] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_GT] = ACTIONS(3080), + [anon_sym_AMP_GT_GT] = ACTIONS(3078), + [anon_sym_LT_AMP] = ACTIONS(3078), + [anon_sym_GT_AMP] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), + }, + [1453] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4249), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1454] = { + [sym__terminated_statement] = STATE(1868), + [sym_for_statement] = STATE(619), + [sym_c_style_for_statement] = STATE(619), + [sym_while_statement] = STATE(619), + [sym_if_statement] = STATE(619), + [sym_case_statement] = STATE(619), + [sym_function_definition] = STATE(619), + [sym_subshell] = STATE(619), + [sym_pipeline] = STATE(619), + [sym_list] = STATE(619), + [sym_negated_command] = STATE(619), + [sym_test_command] = STATE(619), + [sym_declaration_command] = STATE(619), + [sym_unset_command] = STATE(619), + [sym_command] = STATE(619), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(614), + [sym_variable_assignment] = STATE(620), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -43273,7 +45020,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1813), + [aux_sym_program_repeat1] = STATE(1868), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -43283,7 +45030,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(4158), + [anon_sym_RBRACE] = ACTIONS(4251), [anon_sym_BANG] = ACTIONS(23), [anon_sym_LBRACK] = ACTIONS(25), [anon_sym_LBRACK_LBRACK] = ACTIONS(27), @@ -43313,332 +45060,332 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [1455] = { + [anon_sym_esac] = ACTIONS(4253), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4253), + [anon_sym_SEMI_SEMI] = ACTIONS(4253), + [anon_sym_PIPE_AMP] = ACTIONS(4253), + [anon_sym_AMP_AMP] = ACTIONS(4253), + [anon_sym_PIPE_PIPE] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4253), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_LF] = ACTIONS(4253), + [anon_sym_AMP] = ACTIONS(4255), }, - [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), + [1456] = { + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3280), + [sym_test_operator] = ACTIONS(1247), }, - [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), + [1457] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_PIPE_PIPE] = ACTIONS(3320), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_GT] = ACTIONS(3320), + [anon_sym_BANG_EQ] = ACTIONS(3320), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4166), + [sym_test_operator] = ACTIONS(3320), }, - [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), + [1458] = { + [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(4259), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_DOLLAR] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(4259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), + [anon_sym_BQUOTE] = ACTIONS(2126), + [anon_sym_LT_LPAREN] = ACTIONS(2128), + [anon_sym_GT_LPAREN] = ACTIONS(2128), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(683), + [sym_word] = ACTIONS(4259), }, - [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), + [1459] = { + [aux_sym_concatenation_repeat1] = STATE(1871), + [sym__concat] = ACTIONS(3294), + [anon_sym_RPAREN_RPAREN] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_EQ_TILDE] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(687), + [sym_test_operator] = ACTIONS(695), }, - [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), + [1460] = { + [sym__concat] = ACTIONS(699), + [anon_sym_RPAREN_RPAREN] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [anon_sym_EQ_TILDE] = ACTIONS(699), + [anon_sym_EQ_EQ] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(699), + [anon_sym_GT] = ACTIONS(699), + [anon_sym_BANG_EQ] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(699), }, - [1435] = { + [1461] = { + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [1462] = { [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), + [anon_sym_DQUOTE] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4263), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, - [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), + [1463] = { + [sym__concat] = ACTIONS(731), + [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(719), + [sym_test_operator] = ACTIONS(731), }, - [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), + [1464] = { + [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(723), + [sym_test_operator] = ACTIONS(735), }, - [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), + [1465] = { + [sym__concat] = ACTIONS(739), + [anon_sym_RPAREN_RPAREN] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_EQ_TILDE] = ACTIONS(739), + [anon_sym_EQ_EQ] = ACTIONS(739), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_BANG_EQ] = ACTIONS(739), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(727), + [sym_test_operator] = ACTIONS(739), }, - [1439] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(4172), + [1466] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(4265), [sym_comment] = ACTIONS(53), }, - [1440] = { - [sym_subscript] = STATE(1823), - [sym_variable_name] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4176), - [anon_sym_DASH] = ACTIONS(4176), + [1467] = { + [sym_subscript] = STATE(1878), + [sym_variable_name] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4269), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4178), - [anon_sym_STAR] = ACTIONS(4176), - [anon_sym_AT] = ACTIONS(4176), - [anon_sym_QMARK] = ACTIONS(4176), - [anon_sym_0] = ACTIONS(4180), - [anon_sym__] = ACTIONS(4180), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_AT] = ACTIONS(4269), + [anon_sym_QMARK] = ACTIONS(4269), + [anon_sym_0] = ACTIONS(4273), + [anon_sym__] = ACTIONS(4273), }, - [1441] = { - [sym_concatenation] = STATE(1826), + [1468] = { + [sym_concatenation] = STATE(1881), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1826), - [anon_sym_RBRACE] = ACTIONS(4182), - [anon_sym_EQ] = ACTIONS(4184), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4184), - [anon_sym_COLON_QMARK] = ACTIONS(4184), - [anon_sym_COLON_DASH] = ACTIONS(4184), - [anon_sym_PERCENT] = ACTIONS(4184), - [anon_sym_DASH] = ACTIONS(4184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1881), + [anon_sym_RBRACE] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4277), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4281), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [1442] = { - [sym_concatenation] = STATE(1829), + [1469] = { + [sym_concatenation] = STATE(1884), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1829), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_EQ] = ACTIONS(4192), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1884), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4285), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4289), + [anon_sym_COLON] = ACTIONS(4285), + [anon_sym_COLON_QMARK] = ACTIONS(4285), + [anon_sym_COLON_DASH] = ACTIONS(4285), + [anon_sym_PERCENT] = ACTIONS(4285), + [anon_sym_DASH] = ACTIONS(4285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [1443] = { - [sym_concatenation] = STATE(1832), + [1470] = { + [sym_concatenation] = STATE(1887), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1832), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_EQ] = ACTIONS(4200), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1887), + [anon_sym_RBRACE] = ACTIONS(4291), + [anon_sym_EQ] = ACTIONS(4293), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4293), + [anon_sym_COLON_QMARK] = ACTIONS(4293), + [anon_sym_COLON_DASH] = ACTIONS(4293), + [anon_sym_PERCENT] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [1471] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4299), + [anon_sym_SEMI_SEMI] = ACTIONS(4301), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), }, - [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), + [1472] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4299), + [anon_sym_SEMI_SEMI] = ACTIONS(4301), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4303), }, - [1446] = { + [1473] = { [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_for_statement] = STATE(1890), + [sym_c_style_for_statement] = STATE(1890), + [sym_while_statement] = STATE(1890), + [sym_if_statement] = STATE(1890), + [sym_case_statement] = STATE(1890), + [sym_function_definition] = STATE(1890), + [sym_subshell] = STATE(1890), + [sym_pipeline] = STATE(1890), + [sym_list] = STATE(1890), + [sym_negated_command] = STATE(1890), + [sym_test_command] = STATE(1890), + [sym_declaration_command] = STATE(1890), + [sym_unset_command] = STATE(1890), + [sym_command] = STATE(1890), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1836), + [sym_variable_assignment] = STATE(1891), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -43687,66 +45434,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [1474] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4305), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(4299), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_LF] = ACTIONS(4305), + [anon_sym_AMP] = ACTIONS(4307), }, - [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), + [1475] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4305), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(4206), + [anon_sym_BQUOTE] = ACTIONS(4299), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym_LF] = ACTIONS(4305), + [anon_sym_AMP] = ACTIONS(4307), }, - [1449] = { + [1476] = { [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_for_statement] = STATE(1893), + [sym_c_style_for_statement] = STATE(1893), + [sym_while_statement] = STATE(1893), + [sym_if_statement] = STATE(1893), + [sym_case_statement] = STATE(1893), + [sym_function_definition] = STATE(1893), + [sym_subshell] = STATE(1893), + [sym_pipeline] = STATE(1893), + [sym_list] = STATE(1893), + [sym_negated_command] = STATE(1893), + [sym_test_command] = STATE(1893), + [sym_declaration_command] = STATE(1893), + [sym_unset_command] = STATE(1893), + [sym_command] = STATE(1893), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(1839), + [sym_variable_assignment] = STATE(1894), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -43761,21 +45508,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -43793,69 +45540,69 @@ 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(277), + [sym_word] = ACTIONS(281), }, - [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), + [1477] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_SEMI_SEMI] = ACTIONS(4311), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_LF] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4313), }, - [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), + [1478] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_SEMI_SEMI] = ACTIONS(4311), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4313), + [anon_sym_LF] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4313), }, - [1452] = { + [1479] = { [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_for_statement] = STATE(1897), + [sym_c_style_for_statement] = STATE(1897), + [sym_while_statement] = STATE(1897), + [sym_if_statement] = STATE(1897), + [sym_case_statement] = STATE(1897), + [sym_function_definition] = STATE(1897), + [sym_subshell] = STATE(1897), + [sym_pipeline] = STATE(1897), + [sym_list] = STATE(1897), + [sym_negated_command] = STATE(1897), + [sym_test_command] = STATE(1897), + [sym_declaration_command] = STATE(1897), + [sym_unset_command] = STATE(1897), + [sym_command] = STATE(1897), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1843), + [sym_variable_assignment] = STATE(1898), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -43904,1973 +45651,704 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(1852), - [sym_string] = STATE(1851), - [sym_simple_expansion] = STATE(1851), - [sym_string_expansion] = STATE(1851), - [sym_expansion] = STATE(1851), - [sym_command_substitution] = STATE(1851), - [sym_process_substitution] = STATE(1851), - [anon_sym_RBRACE] = ACTIONS(4242), - [sym__special_characters] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(4246), - [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(4246), - }, - [1463] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_esac] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_EQ_TILDE] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - }, - [1464] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4248), - }, - [1465] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1466] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_esac] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [anon_sym_PIPE_AMP] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_EQ_TILDE] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [1467] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4252), - }, - [1468] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1469] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4256), - }, - [1470] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1471] = { - [sym_concatenation] = STATE(1859), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1859), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_EQ] = ACTIONS(4260), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4260), - [anon_sym_COLON_QMARK] = ACTIONS(4260), - [anon_sym_COLON_DASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1472] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_esac] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2950), - [anon_sym_PIPE_AMP] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_EQ_TILDE] = ACTIONS(2950), - [anon_sym_EQ_EQ] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2950), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - }, - [1473] = { - [sym_concatenation] = STATE(1861), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1861), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4266), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1863), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_EQ] = ACTIONS(4272), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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_do_group] = STATE(1899), + [sym_compound_statement] = STATE(1899), + [anon_sym_do] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(3292), [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__expression] = STATE(1900), + [sym_binary_expression] = STATE(1900), + [sym_unary_expression] = STATE(1900), + [sym_parenthesized_expression] = STATE(1900), + [sym_concatenation] = STATE(1900), + [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), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2112), + [sym__special_characters] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_DOLLAR] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), + [anon_sym_BQUOTE] = ACTIONS(2126), + [anon_sym_LT_LPAREN] = ACTIONS(2128), + [anon_sym_GT_LPAREN] = ACTIONS(2128), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2109), - [sym_test_operator] = ACTIONS(2111), + [sym_word] = ACTIONS(2130), + [sym_test_operator] = ACTIONS(2132), }, [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), + [sym__expression] = STATE(1900), + [sym_binary_expression] = STATE(1900), + [sym_unary_expression] = STATE(1900), + [sym_parenthesized_expression] = STATE(1900), + [sym_concatenation] = STATE(1900), + [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), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(2112), + [sym__special_characters] = ACTIONS(4317), + [anon_sym_DQUOTE] = ACTIONS(4319), + [anon_sym_DOLLAR] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4321), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4323), + [anon_sym_BQUOTE] = ACTIONS(4325), + [anon_sym_LT_LPAREN] = ACTIONS(4327), + [anon_sym_GT_LPAREN] = ACTIONS(4327), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(2130), + [sym_test_operator] = ACTIONS(2112), + [sym_regex] = ACTIONS(4329), }, [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), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4331), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_PIPE_PIPE] = ACTIONS(3320), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_GT] = ACTIONS(3320), + [anon_sym_BANG_EQ] = ACTIONS(3320), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3320), }, [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), + [sym__concat] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_EQ_TILDE] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), }, [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), - [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__concat] = ACTIONS(2869), + [anon_sym_esac] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_EQ_TILDE] = ACTIONS(2869), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_GT] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), }, [1486] = { - [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(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), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4333), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(936), }, [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(4286), - [anon_sym_LF] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4286), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4335), + [sym_comment] = ACTIONS(53), }, [1488] = { - [anon_sym_fi] = ACTIONS(4290), + [anon_sym_RBRACE] = ACTIONS(4335), [sym_comment] = ACTIONS(53), }, [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_concatenation] = STATE(1907), + [sym_string] = STATE(1906), + [sym_simple_expansion] = STATE(1906), + [sym_string_expansion] = STATE(1906), + [sym_expansion] = STATE(1906), + [sym_command_substitution] = STATE(1906), + [sym_process_substitution] = STATE(1906), + [anon_sym_RBRACE] = ACTIONS(4335), + [sym__special_characters] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4294), + [sym_word] = ACTIONS(4339), }, [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__concat] = ACTIONS(2905), + [anon_sym_esac] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_EQ_TILDE] = ACTIONS(2905), + [anon_sym_EQ_EQ] = ACTIONS(2905), + [anon_sym_EQ] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_BANG_EQ] = ACTIONS(2905), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4320), + [sym_test_operator] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), }, [1491] = { - [aux_sym_case_item_repeat1] = STATE(1891), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(4322), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4341), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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__concat] = ACTIONS(2913), + [anon_sym_esac] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_EQ_TILDE] = ACTIONS(2913), + [anon_sym_EQ_EQ] = ACTIONS(2913), + [anon_sym_EQ] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_GT] = ACTIONS(2913), + [anon_sym_BANG_EQ] = ACTIONS(2913), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4320), + [sym_test_operator] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), }, [1494] = { - [aux_sym_case_item_repeat1] = STATE(1891), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(4328), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4345), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1496] = { - [anon_sym_esac] = ACTIONS(4334), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4349), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym_concatenation] = STATE(1914), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1914), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_EQ] = ACTIONS(4353), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4353), + [anon_sym_COLON_QMARK] = ACTIONS(4353), + [anon_sym_COLON_DASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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__concat] = ACTIONS(2985), + [anon_sym_esac] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_EQ_TILDE] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_EQ] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2233), + [sym_test_operator] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), }, [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), + [sym_concatenation] = STATE(1916), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1916), + [anon_sym_RBRACE] = ACTIONS(4357), + [anon_sym_EQ] = ACTIONS(4359), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4359), + [anon_sym_COLON_QMARK] = ACTIONS(4359), + [anon_sym_COLON_DASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1501] = { - [anon_sym_esac] = ACTIONS(4368), + [sym__concat] = ACTIONS(3030), + [anon_sym_esac] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_EQ_TILDE] = ACTIONS(3030), + [anon_sym_EQ_EQ] = ACTIONS(3030), + [anon_sym_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_GT] = ACTIONS(3030), + [anon_sym_BANG_EQ] = ACTIONS(3030), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), }, [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), + [sym_concatenation] = STATE(1918), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1918), + [anon_sym_RBRACE] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(4365), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4365), + [anon_sym_COLON_QMARK] = ACTIONS(4365), + [anon_sym_COLON_DASH] = ACTIONS(4365), + [anon_sym_PERCENT] = ACTIONS(4365), + [anon_sym_DASH] = ACTIONS(4365), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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__concat] = ACTIONS(3040), + [anon_sym_esac] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_EQ_TILDE] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2233), + [sym_test_operator] = ACTIONS(3040), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), }, [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), + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4369), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [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), + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(4369), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [1506] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4374), + [sym__concat] = ACTIONS(3078), + [anon_sym_esac] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_EQ_TILDE] = ACTIONS(3078), + [anon_sym_EQ_EQ] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), }, [1507] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4376), + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4371), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, [1508] = { - [anon_sym_RBRACE] = ACTIONS(4376), + [sym__expression] = STATE(1921), + [sym_binary_expression] = STATE(1921), + [sym_unary_expression] = STATE(1921), + [sym_parenthesized_expression] = STATE(1921), + [sym_concatenation] = STATE(1921), + [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), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2112), + [sym__special_characters] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_DOLLAR] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2124), + [anon_sym_BQUOTE] = ACTIONS(2126), + [anon_sym_LT_LPAREN] = ACTIONS(2128), + [anon_sym_GT_LPAREN] = ACTIONS(2128), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2130), + [sym_test_operator] = ACTIONS(2132), }, [1509] = { - [sym_concatenation] = STATE(1908), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1908), - [anon_sym_RBRACE] = ACTIONS(4378), - [anon_sym_EQ] = ACTIONS(4380), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4380), - [anon_sym_COLON_QMARK] = ACTIONS(4380), - [anon_sym_COLON_DASH] = ACTIONS(4380), - [anon_sym_PERCENT] = ACTIONS(4380), - [anon_sym_DASH] = ACTIONS(4380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1664), }, [1510] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_in] = ACTIONS(3876), - [anon_sym_SEMI_SEMI] = ACTIONS(3876), - [sym__special_characters] = ACTIONS(3876), - [anon_sym_DQUOTE] = ACTIONS(3876), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym_raw_string] = ACTIONS(3876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), - [anon_sym_BQUOTE] = ACTIONS(3876), - [anon_sym_LT_LPAREN] = ACTIONS(3876), - [anon_sym_GT_LPAREN] = ACTIONS(3876), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LF] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3876), + [aux_sym_concatenation_repeat1] = STATE(1510), + [sym__concat] = ACTIONS(4373), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1664), }, [1511] = { - [sym_concatenation] = STATE(1910), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1910), - [anon_sym_RBRACE] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(4386), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4388), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4386), - [anon_sym_COLON_QMARK] = ACTIONS(4386), - [anon_sym_COLON_DASH] = ACTIONS(4386), - [anon_sym_PERCENT] = ACTIONS(4386), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), }, [1512] = { - [sym__concat] = ACTIONS(3884), - [anon_sym_in] = ACTIONS(3886), - [anon_sym_SEMI_SEMI] = ACTIONS(3886), - [sym__special_characters] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym_raw_string] = ACTIONS(3886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), - [anon_sym_BQUOTE] = ACTIONS(3886), - [anon_sym_LT_LPAREN] = ACTIONS(3886), - [anon_sym_GT_LPAREN] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LF] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(4376), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [1513] = { - [sym_concatenation] = STATE(1912), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1912), - [anon_sym_RBRACE] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(4392), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4392), - [anon_sym_COLON_QMARK] = ACTIONS(4392), - [anon_sym_COLON_DASH] = ACTIONS(4392), - [anon_sym_PERCENT] = ACTIONS(4392), - [anon_sym_DASH] = ACTIONS(4392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_concatenation] = STATE(1926), + [sym_string] = STATE(1925), + [sym_simple_expansion] = STATE(1925), + [sym_string_expansion] = STATE(1925), + [sym_expansion] = STATE(1925), + [sym_command_substitution] = STATE(1925), + [sym_process_substitution] = STATE(1925), + [anon_sym_RBRACE] = ACTIONS(4378), + [sym__special_characters] = ACTIONS(4380), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4382), }, [1514] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_in] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(4384), + [sym_comment] = ACTIONS(53), }, [1515] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4396), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4398), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4423), - [sym_comment] = ACTIONS(53), - }, - [1543] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4425), - [sym_comment] = ACTIONS(53), - }, - [1544] = { - [anon_sym_RBRACE] = ACTIONS(4425), - [sym_comment] = ACTIONS(53), - }, - [1545] = { - [sym_concatenation] = STATE(1926), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1926), - [anon_sym_RBRACE] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4429), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4431), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4429), - [anon_sym_COLON_QMARK] = ACTIONS(4429), - [anon_sym_COLON_DASH] = ACTIONS(4429), - [anon_sym_PERCENT] = ACTIONS(4429), - [anon_sym_DASH] = ACTIONS(4429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1546] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(3874), - [anon_sym_PIPE_PIPE] = ACTIONS(3874), - [anon_sym_RBRACK] = ACTIONS(3874), - [anon_sym_EQ_TILDE] = ACTIONS(3874), - [anon_sym_EQ_EQ] = ACTIONS(3874), - [anon_sym_EQ] = ACTIONS(3876), - [anon_sym_LT] = ACTIONS(3874), - [anon_sym_GT] = ACTIONS(3874), - [anon_sym_BANG_EQ] = ACTIONS(3874), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3874), - }, - [1547] = { - [sym_concatenation] = STATE(1928), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1928), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(4435), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4437), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4435), - [anon_sym_COLON_QMARK] = ACTIONS(4435), - [anon_sym_COLON_DASH] = ACTIONS(4435), - [anon_sym_PERCENT] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1548] = { - [sym__concat] = ACTIONS(3884), - [anon_sym_AMP_AMP] = ACTIONS(3884), - [anon_sym_PIPE_PIPE] = ACTIONS(3884), - [anon_sym_RBRACK] = ACTIONS(3884), - [anon_sym_EQ_TILDE] = ACTIONS(3884), - [anon_sym_EQ_EQ] = ACTIONS(3884), - [anon_sym_EQ] = ACTIONS(3886), - [anon_sym_LT] = ACTIONS(3884), - [anon_sym_GT] = ACTIONS(3884), - [anon_sym_BANG_EQ] = ACTIONS(3884), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3884), - }, - [1549] = { [sym_concatenation] = STATE(1930), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -45879,6787 +46357,550 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1930), - [anon_sym_RBRACE] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4441), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4443), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(4386), + [anon_sym_EQ] = ACTIONS(4388), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4390), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4392), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [1550] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_RBRACK] = ACTIONS(3939), - [anon_sym_EQ_TILDE] = ACTIONS(3939), - [anon_sym_EQ_EQ] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3939), - [anon_sym_GT] = ACTIONS(3939), - [anon_sym_BANG_EQ] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3939), - }, - [1551] = { - [sym_concatenation] = STATE(885), + [1516] = { + [sym_concatenation] = STATE(1933), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1933), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4396), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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(885), + [1517] = { + [sym_concatenation] = STATE(1935), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(1935), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(4402), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4406), + [anon_sym_COLON] = ACTIONS(4402), + [anon_sym_COLON_QMARK] = ACTIONS(4402), + [anon_sym_COLON_DASH] = ACTIONS(4402), + [anon_sym_PERCENT] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [1518] = { + [sym__concat] = ACTIONS(1788), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3971), + [sym_word] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1788), }, - [1555] = { - [sym_concatenation] = STATE(885), + [1519] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4408), + }, + [1520] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [1521] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_SEMI_SEMI] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1834), + [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(53), - [sym_test_operator] = ACTIONS(3977), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1832), }, - [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), + [1522] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4412), }, - [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_subscript] = STATE(1942), - [sym_variable_name] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4461), - [anon_sym_DASH] = ACTIONS(4461), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4463), - [anon_sym_STAR] = ACTIONS(4461), - [anon_sym_AT] = ACTIONS(4461), - [anon_sym_QMARK] = ACTIONS(4461), - [anon_sym_0] = ACTIONS(4465), - [anon_sym__] = ACTIONS(4465), - }, - [1571] = { - [sym_concatenation] = STATE(1945), + [1523] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1945), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(4469), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4473), - [anon_sym_COLON] = ACTIONS(4469), - [anon_sym_COLON_QMARK] = ACTIONS(4469), - [anon_sym_COLON_DASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [1572] = { - [sym_concatenation] = STATE(1948), + [1524] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + }, + [1525] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4416), + }, + [1526] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1948), - [anon_sym_RBRACE] = ACTIONS(4475), - [anon_sym_EQ] = ACTIONS(4477), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4479), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [1573] = { - [sym_concatenation] = STATE(1951), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1951), - [anon_sym_RBRACE] = ACTIONS(4483), - [anon_sym_EQ] = ACTIONS(4485), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4487), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [1527] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), }, - [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), + [1528] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4418), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, - [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), + [1529] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4418), + [anon_sym_SEMI_SEMI] = ACTIONS(4420), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_LF] = ACTIONS(4420), + [anon_sym_AMP] = ACTIONS(4422), + }, + [1530] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4418), + [anon_sym_SEMI_SEMI] = ACTIONS(4420), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_LF] = ACTIONS(4420), + [anon_sym_AMP] = ACTIONS(4422), }, - [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), + [1531] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(4418), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, - [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), + [1532] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4424), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(4418), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_LF] = ACTIONS(4424), + [anon_sym_AMP] = ACTIONS(4426), + }, + [1533] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4424), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(4491), + [anon_sym_BQUOTE] = ACTIONS(4418), [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), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym_LF] = ACTIONS(4424), + [anon_sym_AMP] = ACTIONS(4426), }, - [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), + [1534] = { + [sym__concat] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), }, - [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), + [1535] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4428), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1536] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4428), + [anon_sym_SEMI_SEMI] = ACTIONS(4430), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_LF] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4432), + }, + [1537] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4428), + [anon_sym_SEMI_SEMI] = ACTIONS(4430), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4507), - [sym_comment] = ACTIONS(53), - }, - [1586] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4509), - [sym_comment] = ACTIONS(53), - }, - [1587] = { - [anon_sym_RBRACE] = ACTIONS(4509), - [sym_comment] = ACTIONS(53), - }, - [1588] = { - [sym_concatenation] = STATE(1966), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1966), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_EQ] = ACTIONS(4513), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4515), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4513), - [anon_sym_COLON_QMARK] = ACTIONS(4513), - [anon_sym_COLON_DASH] = ACTIONS(4513), - [anon_sym_PERCENT] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1589] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_PIPE] = ACTIONS(3876), - [anon_sym_RPAREN] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(3874), - [anon_sym_PIPE_PIPE] = ACTIONS(3874), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3874), - [anon_sym_EQ_TILDE] = ACTIONS(3874), - [anon_sym_EQ_EQ] = ACTIONS(3874), - [anon_sym_EQ] = ACTIONS(3876), - [anon_sym_LT] = ACTIONS(3874), - [anon_sym_GT] = ACTIONS(3874), - [anon_sym_BANG_EQ] = ACTIONS(3874), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3874), - }, - [1590] = { - [sym_concatenation] = STATE(1968), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1968), - [anon_sym_RBRACE] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4519), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4519), - [anon_sym_COLON_QMARK] = ACTIONS(4519), - [anon_sym_COLON_DASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_DASH] = ACTIONS(4519), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1591] = { - [sym__concat] = ACTIONS(3884), - [anon_sym_PIPE] = ACTIONS(3886), - [anon_sym_RPAREN] = ACTIONS(3884), - [anon_sym_AMP_AMP] = ACTIONS(3884), - [anon_sym_PIPE_PIPE] = ACTIONS(3884), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3884), - [anon_sym_EQ_TILDE] = ACTIONS(3884), - [anon_sym_EQ_EQ] = ACTIONS(3884), - [anon_sym_EQ] = ACTIONS(3886), - [anon_sym_LT] = ACTIONS(3884), - [anon_sym_GT] = ACTIONS(3884), - [anon_sym_BANG_EQ] = ACTIONS(3884), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3884), - }, - [1592] = { - [sym_concatenation] = STATE(1970), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1970), - [anon_sym_RBRACE] = ACTIONS(4523), - [anon_sym_EQ] = ACTIONS(4525), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4525), - [anon_sym_COLON_QMARK] = ACTIONS(4525), - [anon_sym_COLON_DASH] = ACTIONS(4525), - [anon_sym_PERCENT] = ACTIONS(4525), - [anon_sym_DASH] = ACTIONS(4525), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1593] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3939), - [anon_sym_EQ_TILDE] = ACTIONS(3939), - [anon_sym_EQ_EQ] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3939), - [anon_sym_GT] = ACTIONS(3939), - [anon_sym_BANG_EQ] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3939), - }, - [1594] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4535), - [sym_comment] = ACTIONS(53), - }, - [1605] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4537), - [sym_comment] = ACTIONS(53), - }, - [1606] = { - [anon_sym_RBRACE] = ACTIONS(4537), - [sym_comment] = ACTIONS(53), - }, - [1607] = { - [sym_concatenation] = STATE(1977), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1977), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4541), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4543), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4541), - [anon_sym_COLON_QMARK] = ACTIONS(4541), - [anon_sym_COLON_DASH] = ACTIONS(4541), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1608] = { - [sym__concat] = ACTIONS(3874), - [sym_variable_name] = ACTIONS(3874), - [anon_sym_PIPE] = ACTIONS(3876), - [anon_sym_RPAREN] = ACTIONS(3876), - [anon_sym_SEMI_SEMI] = ACTIONS(3876), - [anon_sym_PIPE_AMP] = ACTIONS(3876), - [anon_sym_AMP_AMP] = ACTIONS(3876), - [anon_sym_PIPE_PIPE] = ACTIONS(3876), - [sym__special_characters] = ACTIONS(3876), - [anon_sym_DQUOTE] = ACTIONS(3876), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym_raw_string] = ACTIONS(3876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), - [anon_sym_BQUOTE] = ACTIONS(3876), - [anon_sym_LT_LPAREN] = ACTIONS(3876), - [anon_sym_GT_LPAREN] = ACTIONS(3876), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3876), - [sym_word] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LF] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3876), - }, - [1609] = { - [sym_concatenation] = STATE(1979), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1979), - [anon_sym_RBRACE] = ACTIONS(4545), - [anon_sym_EQ] = ACTIONS(4547), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4547), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_COLON_DASH] = ACTIONS(4547), - [anon_sym_PERCENT] = ACTIONS(4547), - [anon_sym_DASH] = ACTIONS(4547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1610] = { - [sym__concat] = ACTIONS(3884), - [sym_variable_name] = ACTIONS(3884), - [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__special_characters] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym_raw_string] = ACTIONS(3886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), - [anon_sym_BQUOTE] = ACTIONS(3886), - [anon_sym_LT_LPAREN] = ACTIONS(3886), - [anon_sym_GT_LPAREN] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3886), - [sym_word] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LF] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3886), - }, - [1611] = { - [sym_concatenation] = STATE(1981), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1981), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4553), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4555), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4553), - [anon_sym_COLON_QMARK] = ACTIONS(4553), - [anon_sym_COLON_DASH] = ACTIONS(4553), - [anon_sym_PERCENT] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1612] = { - [sym__concat] = ACTIONS(3939), - [sym_variable_name] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), - [sym_word] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), - }, - [1613] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4557), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4559), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4563), - [sym_comment] = ACTIONS(53), - }, - [1623] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4565), - [sym_comment] = ACTIONS(53), - }, - [1624] = { - [anon_sym_RBRACE] = ACTIONS(4565), - [sym_comment] = ACTIONS(53), - }, - [1625] = { - [sym_concatenation] = STATE(1988), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1988), - [anon_sym_RBRACE] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4569), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4571), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4569), - [anon_sym_COLON_QMARK] = ACTIONS(4569), - [anon_sym_COLON_DASH] = ACTIONS(4569), - [anon_sym_PERCENT] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1626] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_PIPE] = ACTIONS(3876), - [anon_sym_RPAREN] = ACTIONS(3876), - [anon_sym_SEMI_SEMI] = ACTIONS(3876), - [anon_sym_PIPE_AMP] = ACTIONS(3876), - [anon_sym_AMP_AMP] = ACTIONS(3876), - [anon_sym_PIPE_PIPE] = ACTIONS(3876), - [sym__special_characters] = ACTIONS(3876), - [anon_sym_DQUOTE] = ACTIONS(3876), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym_raw_string] = ACTIONS(3876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), - [anon_sym_BQUOTE] = ACTIONS(3876), - [anon_sym_LT_LPAREN] = ACTIONS(3876), - [anon_sym_GT_LPAREN] = ACTIONS(3876), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3876), - [sym_word] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LF] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3876), - }, - [1627] = { - [sym_concatenation] = STATE(1990), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1990), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_EQ] = ACTIONS(4575), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_COLON_QMARK] = ACTIONS(4575), - [anon_sym_COLON_DASH] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4575), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1628] = { - [sym__concat] = ACTIONS(3884), - [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__special_characters] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym_raw_string] = ACTIONS(3886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), - [anon_sym_BQUOTE] = ACTIONS(3886), - [anon_sym_LT_LPAREN] = ACTIONS(3886), - [anon_sym_GT_LPAREN] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3886), - [sym_word] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LF] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3886), - }, - [1629] = { - [sym_concatenation] = STATE(1992), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1992), - [anon_sym_RBRACE] = ACTIONS(4579), - [anon_sym_EQ] = ACTIONS(4581), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4583), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4581), - [anon_sym_COLON_QMARK] = ACTIONS(4581), - [anon_sym_COLON_DASH] = ACTIONS(4581), - [anon_sym_PERCENT] = ACTIONS(4581), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1630] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), - [sym_word] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), - }, - [1631] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4585), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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), - [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), - }, - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4591), - [sym_comment] = ACTIONS(53), - }, - [1641] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4593), - [sym_comment] = ACTIONS(53), - }, - [1642] = { - [anon_sym_RBRACE] = ACTIONS(4593), - [sym_comment] = ACTIONS(53), - }, - [1643] = { - [sym_concatenation] = STATE(1999), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(1999), - [anon_sym_RBRACE] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4597), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4599), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4597), - [anon_sym_COLON_QMARK] = ACTIONS(4597), - [anon_sym_COLON_DASH] = ACTIONS(4597), - [anon_sym_PERCENT] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1644] = { - [sym_file_descriptor] = ACTIONS(3874), - [sym__concat] = ACTIONS(3874), - [sym_variable_name] = ACTIONS(3874), - [anon_sym_LT] = ACTIONS(3876), - [anon_sym_GT] = ACTIONS(3876), - [anon_sym_GT_GT] = ACTIONS(3874), - [anon_sym_AMP_GT] = ACTIONS(3876), - [anon_sym_AMP_GT_GT] = ACTIONS(3874), - [anon_sym_LT_AMP] = ACTIONS(3874), - [anon_sym_GT_AMP] = ACTIONS(3874), - [sym__special_characters] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym_raw_string] = ACTIONS(3874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3874), - [anon_sym_BQUOTE] = ACTIONS(3874), - [anon_sym_LT_LPAREN] = ACTIONS(3874), - [anon_sym_GT_LPAREN] = ACTIONS(3874), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3874), - }, - [1645] = { - [sym_concatenation] = STATE(2001), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2001), - [anon_sym_RBRACE] = ACTIONS(4601), - [anon_sym_EQ] = ACTIONS(4603), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4605), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4603), - [anon_sym_COLON_QMARK] = ACTIONS(4603), - [anon_sym_COLON_DASH] = ACTIONS(4603), - [anon_sym_PERCENT] = ACTIONS(4603), - [anon_sym_DASH] = ACTIONS(4603), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1646] = { - [sym_file_descriptor] = ACTIONS(3884), - [sym__concat] = ACTIONS(3884), - [sym_variable_name] = ACTIONS(3884), - [anon_sym_LT] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3886), - [anon_sym_GT_GT] = ACTIONS(3884), - [anon_sym_AMP_GT] = ACTIONS(3886), - [anon_sym_AMP_GT_GT] = ACTIONS(3884), - [anon_sym_LT_AMP] = ACTIONS(3884), - [anon_sym_GT_AMP] = ACTIONS(3884), - [sym__special_characters] = ACTIONS(3884), - [anon_sym_DQUOTE] = ACTIONS(3884), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym_raw_string] = ACTIONS(3884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3884), - [anon_sym_BQUOTE] = ACTIONS(3884), - [anon_sym_LT_LPAREN] = ACTIONS(3884), - [anon_sym_GT_LPAREN] = ACTIONS(3884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3884), - }, - [1647] = { - [sym_concatenation] = STATE(2003), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2003), - [anon_sym_RBRACE] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4609), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4611), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4609), - [anon_sym_COLON_QMARK] = ACTIONS(4609), - [anon_sym_COLON_DASH] = ACTIONS(4609), - [anon_sym_PERCENT] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1648] = { - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [sym_variable_name] = ACTIONS(3939), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3939), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3939), - [anon_sym_LT_AMP] = ACTIONS(3939), - [anon_sym_GT_AMP] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3939), - }, - [1649] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4613), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4615), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4619), - [sym_comment] = ACTIONS(53), - }, - [1659] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4621), - [sym_comment] = ACTIONS(53), - }, - [1660] = { - [anon_sym_RBRACE] = ACTIONS(4621), - [sym_comment] = ACTIONS(53), - }, - [1661] = { - [sym_concatenation] = STATE(2010), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2010), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_EQ] = ACTIONS(4625), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4627), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_COLON_QMARK] = ACTIONS(4625), - [anon_sym_COLON_DASH] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1662] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3876), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym__string_content] = ACTIONS(3874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), - [anon_sym_BQUOTE] = ACTIONS(3876), - [sym_comment] = ACTIONS(179), - }, - [1663] = { - [sym_concatenation] = STATE(2012), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2012), - [anon_sym_RBRACE] = ACTIONS(4629), - [anon_sym_EQ] = ACTIONS(4631), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4631), - [anon_sym_COLON_QMARK] = ACTIONS(4631), - [anon_sym_COLON_DASH] = ACTIONS(4631), - [anon_sym_PERCENT] = ACTIONS(4631), - [anon_sym_DASH] = ACTIONS(4631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1664] = { - [sym__concat] = ACTIONS(3884), - [anon_sym_DQUOTE] = ACTIONS(3886), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym__string_content] = ACTIONS(3884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), - [anon_sym_BQUOTE] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - }, - [1665] = { - [sym_concatenation] = STATE(2014), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2014), - [anon_sym_RBRACE] = ACTIONS(4635), - [anon_sym_EQ] = ACTIONS(4637), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_COLON_QMARK] = ACTIONS(4637), - [anon_sym_COLON_DASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1666] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym__string_content] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [sym_comment] = ACTIONS(179), - }, - [1667] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4643), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4645), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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), - }, - [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] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(4666), - [sym_comment] = ACTIONS(53), - }, - [1683] = { - [sym_concatenation] = STATE(2028), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2028), - [anon_sym_RBRACE] = ACTIONS(4668), - [anon_sym_EQ] = ACTIONS(4670), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1684] = { - [sym_concatenation] = STATE(2031), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2031), - [anon_sym_RBRACE] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4678), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4680), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4682), - [anon_sym_COLON] = ACTIONS(4678), - [anon_sym_COLON_QMARK] = ACTIONS(4678), - [anon_sym_COLON_DASH] = ACTIONS(4678), - [anon_sym_PERCENT] = ACTIONS(4678), - [anon_sym_DASH] = ACTIONS(4678), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1685] = { - [sym_concatenation] = STATE(2033), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2033), - [anon_sym_RBRACE] = ACTIONS(4660), - [anon_sym_EQ] = ACTIONS(4684), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4686), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4688), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COLON_QMARK] = ACTIONS(4684), - [anon_sym_COLON_DASH] = ACTIONS(4684), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_DASH] = ACTIONS(4684), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1686] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [sym_comment] = ACTIONS(53), - }, - [1687] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4690), - }, - [1688] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4692), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4696), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4660), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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_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), - }, - [1697] = { - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(4702), - [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), - }, - [1698] = { - [sym_file_descriptor] = ACTIONS(323), - [sym_variable_name] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(4702), - [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(325), - [anon_sym_SEMI] = ACTIONS(4704), - [anon_sym_LF] = ACTIONS(4706), - [anon_sym_AMP] = ACTIONS(4704), - }, - [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_word] = ACTIONS(819), - }, - [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), - [anon_sym_SEMI] = ACTIONS(4708), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4708), - }, - [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_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(4708), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4708), - }, - [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__simple_heredoc_body] = ACTIONS(4720), - [sym__heredoc_body_beginning] = ACTIONS(4720), - [sym_file_descriptor] = ACTIONS(4720), - [sym__concat] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4722), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_RPAREN] = ACTIONS(4722), - [anon_sym_SEMI_SEMI] = ACTIONS(4722), - [anon_sym_PIPE_AMP] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_EQ_TILDE] = ACTIONS(4722), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4722), - [anon_sym_GT] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_AMP_GT] = ACTIONS(4722), - [anon_sym_AMP_GT_GT] = ACTIONS(4722), - [anon_sym_LT_AMP] = ACTIONS(4722), - [anon_sym_GT_AMP] = ACTIONS(4722), - [anon_sym_LT_LT] = ACTIONS(4722), - [anon_sym_LT_LT_DASH] = ACTIONS(4722), - [anon_sym_LT_LT_LT] = ACTIONS(4722), - [sym__special_characters] = ACTIONS(4722), - [anon_sym_DQUOTE] = ACTIONS(4722), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym_raw_string] = ACTIONS(4722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), - [anon_sym_BQUOTE] = ACTIONS(4722), - [anon_sym_LT_LPAREN] = ACTIONS(4722), - [anon_sym_GT_LPAREN] = ACTIONS(4722), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LF] = ACTIONS(4720), - [anon_sym_AMP] = ACTIONS(4722), - }, - [1707] = { - [sym__simple_heredoc_body] = ACTIONS(4724), - [sym__heredoc_body_beginning] = ACTIONS(4724), - [sym_file_descriptor] = ACTIONS(4724), - [sym__concat] = ACTIONS(4724), - [anon_sym_esac] = ACTIONS(4726), - [anon_sym_PIPE] = ACTIONS(4726), - [anon_sym_RPAREN] = ACTIONS(4726), - [anon_sym_SEMI_SEMI] = ACTIONS(4726), - [anon_sym_PIPE_AMP] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [anon_sym_EQ_TILDE] = ACTIONS(4726), - [anon_sym_EQ_EQ] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4726), - [anon_sym_GT] = ACTIONS(4726), - [anon_sym_GT_GT] = ACTIONS(4726), - [anon_sym_AMP_GT] = ACTIONS(4726), - [anon_sym_AMP_GT_GT] = ACTIONS(4726), - [anon_sym_LT_AMP] = ACTIONS(4726), - [anon_sym_GT_AMP] = ACTIONS(4726), - [anon_sym_LT_LT] = ACTIONS(4726), - [anon_sym_LT_LT_DASH] = ACTIONS(4726), - [anon_sym_LT_LT_LT] = ACTIONS(4726), - [sym__special_characters] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4726), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym_raw_string] = ACTIONS(4726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), - [anon_sym_BQUOTE] = ACTIONS(4726), - [anon_sym_LT_LPAREN] = ACTIONS(4726), - [anon_sym_GT_LPAREN] = ACTIONS(4726), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_LF] = ACTIONS(4724), - [anon_sym_AMP] = ACTIONS(4726), - }, - [1708] = { - [sym__simple_heredoc_body] = ACTIONS(4728), - [sym__heredoc_body_beginning] = ACTIONS(4728), - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_SEMI_SEMI] = ACTIONS(4730), - [anon_sym_PIPE_AMP] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_EQ_TILDE] = ACTIONS(4730), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4730), - [anon_sym_AMP_GT] = ACTIONS(4730), - [anon_sym_AMP_GT_GT] = ACTIONS(4730), - [anon_sym_LT_AMP] = ACTIONS(4730), - [anon_sym_GT_AMP] = ACTIONS(4730), - [anon_sym_LT_LT] = ACTIONS(4730), - [anon_sym_LT_LT_DASH] = ACTIONS(4730), - [anon_sym_LT_LT_LT] = ACTIONS(4730), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4730), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym_raw_string] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), - [anon_sym_BQUOTE] = ACTIONS(4730), - [anon_sym_LT_LPAREN] = ACTIONS(4730), - [anon_sym_GT_LPAREN] = ACTIONS(4730), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4728), - [anon_sym_AMP] = ACTIONS(4730), - }, - [1709] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4732), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1710] = { - [sym__simple_heredoc_body] = ACTIONS(4734), - [sym__heredoc_body_beginning] = ACTIONS(4734), - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [anon_sym_PIPE] = ACTIONS(4736), - [anon_sym_RPAREN] = ACTIONS(4736), - [anon_sym_SEMI_SEMI] = ACTIONS(4736), - [anon_sym_PIPE_AMP] = ACTIONS(4736), - [anon_sym_AMP_AMP] = ACTIONS(4736), - [anon_sym_PIPE_PIPE] = ACTIONS(4736), - [anon_sym_EQ_TILDE] = ACTIONS(4736), - [anon_sym_EQ_EQ] = ACTIONS(4736), - [anon_sym_LT] = ACTIONS(4736), - [anon_sym_GT] = ACTIONS(4736), - [anon_sym_GT_GT] = ACTIONS(4736), - [anon_sym_AMP_GT] = ACTIONS(4736), - [anon_sym_AMP_GT_GT] = ACTIONS(4736), - [anon_sym_LT_AMP] = ACTIONS(4736), - [anon_sym_GT_AMP] = ACTIONS(4736), - [anon_sym_LT_LT] = ACTIONS(4736), - [anon_sym_LT_LT_DASH] = ACTIONS(4736), - [anon_sym_LT_LT_LT] = ACTIONS(4736), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4736), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym_raw_string] = ACTIONS(4736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), - [anon_sym_BQUOTE] = ACTIONS(4736), - [anon_sym_LT_LPAREN] = ACTIONS(4736), - [anon_sym_GT_LPAREN] = ACTIONS(4736), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4734), - [anon_sym_AMP] = ACTIONS(4736), - }, - [1711] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4738), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1712] = { - [sym__simple_heredoc_body] = ACTIONS(4740), - [sym__heredoc_body_beginning] = ACTIONS(4740), - [sym_file_descriptor] = ACTIONS(4740), - [sym__concat] = ACTIONS(4740), - [anon_sym_esac] = ACTIONS(4742), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_SEMI_SEMI] = ACTIONS(4742), - [anon_sym_PIPE_AMP] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_EQ_TILDE] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_GT_GT] = ACTIONS(4742), - [anon_sym_AMP_GT] = ACTIONS(4742), - [anon_sym_AMP_GT_GT] = ACTIONS(4742), - [anon_sym_LT_AMP] = ACTIONS(4742), - [anon_sym_GT_AMP] = ACTIONS(4742), - [anon_sym_LT_LT] = ACTIONS(4742), - [anon_sym_LT_LT_DASH] = ACTIONS(4742), - [anon_sym_LT_LT_LT] = ACTIONS(4742), - [sym__special_characters] = ACTIONS(4742), - [anon_sym_DQUOTE] = ACTIONS(4742), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym_raw_string] = ACTIONS(4742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), - [anon_sym_BQUOTE] = ACTIONS(4742), - [anon_sym_LT_LPAREN] = ACTIONS(4742), - [anon_sym_GT_LPAREN] = ACTIONS(4742), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_LF] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), - }, - [1713] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4744), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1714] = { - [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), - }, - [1715] = { - [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), - }, - [1716] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4746), - [sym_comment] = ACTIONS(53), - }, - [1717] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4748), - [sym_comment] = ACTIONS(53), - }, - [1718] = { - [anon_sym_RBRACE] = ACTIONS(4748), - [sym_comment] = ACTIONS(53), - }, - [1719] = { - [sym_concatenation] = STATE(2051), - [sym_string] = STATE(2050), - [sym_simple_expansion] = STATE(2050), - [sym_string_expansion] = STATE(2050), - [sym_expansion] = STATE(2050), - [sym_command_substitution] = STATE(2050), - [sym_process_substitution] = STATE(2050), - [anon_sym_RBRACE] = ACTIONS(4748), - [sym__special_characters] = ACTIONS(4750), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(4752), - [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(4752), - }, - [1720] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(2870), - [sym__special_characters] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym_raw_string] = ACTIONS(2868), - [anon_sym_POUND] = ACTIONS(2868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2868), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_COLON_QMARK] = ACTIONS(2870), - [anon_sym_COLON_DASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2868), - [anon_sym_BQUOTE] = ACTIONS(2868), - [anon_sym_LT_LPAREN] = ACTIONS(2868), - [anon_sym_GT_LPAREN] = ACTIONS(2868), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2870), - }, - [1721] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4754), - }, - [1722] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1723] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2878), - [sym__special_characters] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_POUND] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_COLON_DASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2878), - }, - [1724] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4758), - }, - [1725] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1726] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4762), - }, - [1727] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1728] = { - [sym_concatenation] = STATE(2058), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2058), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_EQ] = ACTIONS(4766), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1729] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_RBRACE] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2950), - [sym__special_characters] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_POUND] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_COLON_QMARK] = ACTIONS(2950), - [anon_sym_COLON_DASH] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2950), - }, - [1730] = { - [sym_concatenation] = STATE(2060), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2060), - [anon_sym_RBRACE] = ACTIONS(4770), - [anon_sym_EQ] = ACTIONS(4772), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_COLON_QMARK] = ACTIONS(4772), - [anon_sym_COLON_DASH] = ACTIONS(4772), - [anon_sym_PERCENT] = ACTIONS(4772), - [anon_sym_DASH] = ACTIONS(4772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1731] = { - [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(2995), - }, - [1732] = { - [sym_concatenation] = STATE(2062), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2062), - [anon_sym_RBRACE] = ACTIONS(4776), - [anon_sym_EQ] = ACTIONS(4778), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4778), - [anon_sym_COLON_QMARK] = ACTIONS(4778), - [anon_sym_COLON_DASH] = ACTIONS(4778), - [anon_sym_PERCENT] = ACTIONS(4778), - [anon_sym_DASH] = ACTIONS(4778), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1733] = { - [sym__simple_heredoc_body] = ACTIONS(4782), - [sym__heredoc_body_beginning] = ACTIONS(4782), - [sym_file_descriptor] = ACTIONS(4782), - [sym__concat] = ACTIONS(4782), - [anon_sym_esac] = ACTIONS(4784), - [anon_sym_PIPE] = ACTIONS(4784), - [anon_sym_RPAREN] = ACTIONS(4784), - [anon_sym_SEMI_SEMI] = ACTIONS(4784), - [anon_sym_PIPE_AMP] = 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_LT] = ACTIONS(4784), - [anon_sym_GT] = ACTIONS(4784), - [anon_sym_GT_GT] = ACTIONS(4784), - [anon_sym_AMP_GT] = ACTIONS(4784), - [anon_sym_AMP_GT_GT] = ACTIONS(4784), - [anon_sym_LT_AMP] = ACTIONS(4784), - [anon_sym_GT_AMP] = ACTIONS(4784), - [anon_sym_LT_LT] = ACTIONS(4784), - [anon_sym_LT_LT_DASH] = ACTIONS(4784), - [anon_sym_LT_LT_LT] = ACTIONS(4784), - [sym__special_characters] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4784), - [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(179), - [sym_word] = ACTIONS(4784), - [anon_sym_SEMI] = ACTIONS(4784), - [anon_sym_LF] = ACTIONS(4782), - [anon_sym_AMP] = ACTIONS(4784), - }, - [1734] = { - [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(3005), - }, - [1735] = { - [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(4786), - [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), - }, - [1736] = { - [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(4786), - [anon_sym_LT_LPAREN] = ACTIONS(817), - [anon_sym_GT_LPAREN] = ACTIONS(817), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), - }, - [1737] = { - [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), - }, - [1738] = { - [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(4788), - [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), - }, - [1739] = { - [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(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4790), - [anon_sym_AMP] = ACTIONS(4792), - }, - [1740] = { - [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] = { - [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] = { - [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] = { - [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), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_LF] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(653), - }, - [1744] = { - [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), - [anon_sym_SEMI] = ACTIONS(669), - [anon_sym_LF] = ACTIONS(667), - [anon_sym_AMP] = ACTIONS(669), - }, - [1745] = { - [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] = { - [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), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_LF] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(653), - }, - [1747] = { - [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), - [anon_sym_SEMI] = ACTIONS(669), - [anon_sym_LF] = ACTIONS(667), - [anon_sym_AMP] = ACTIONS(669), - }, - [1748] = { - [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), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LF] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1926), - }, - [1749] = { - [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), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [1750] = { - [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), - [anon_sym_SEMI] = ACTIONS(1941), - [anon_sym_LF] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1941), - }, - [1751] = { - [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), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_LF] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1650), - }, - [1752] = { - [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(2075), - [sym_string] = STATE(2074), - [sym_simple_expansion] = STATE(2074), - [sym_string_expansion] = STATE(2074), - [sym_expansion] = STATE(2074), - [sym_command_substitution] = STATE(2074), - [sym_process_substitution] = STATE(2074), - [anon_sym_RBRACE] = ACTIONS(4817), - [sym__special_characters] = ACTIONS(4819), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(4821), - [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(4821), - }, - [1757] = { - [sym__heredoc_body_middle] = ACTIONS(2868), - [sym__heredoc_body_end] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2868), - [sym_comment] = ACTIONS(53), - }, - [1758] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4823), - }, - [1759] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4825), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1760] = { - [sym__heredoc_body_middle] = ACTIONS(2876), - [sym__heredoc_body_end] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - }, - [1761] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4827), - }, - [1762] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1763] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4831), - }, - [1764] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4817), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1765] = { - [sym_concatenation] = STATE(2082), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2082), - [anon_sym_RBRACE] = ACTIONS(4833), - [anon_sym_EQ] = ACTIONS(4835), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4837), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_COLON_QMARK] = ACTIONS(4835), - [anon_sym_COLON_DASH] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4835), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1766] = { - [sym__heredoc_body_middle] = ACTIONS(2948), - [sym__heredoc_body_end] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [sym_comment] = ACTIONS(53), - }, - [1767] = { - [sym_concatenation] = STATE(2084), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2084), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1768] = { - [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), - }, - [1769] = { - [sym_concatenation] = STATE(2086), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2086), - [anon_sym_RBRACE] = ACTIONS(4845), - [anon_sym_EQ] = ACTIONS(4847), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1770] = { - [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(2818), - }, - [1771] = { - [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(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4851), - [sym_comment] = ACTIONS(53), - }, - [1773] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4853), - [sym_comment] = ACTIONS(53), - }, - [1774] = { - [anon_sym_RBRACE] = ACTIONS(4853), - [sym_comment] = ACTIONS(53), - }, - [1775] = { - [sym_concatenation] = STATE(2091), - [sym_string] = STATE(2090), - [sym_simple_expansion] = STATE(2090), - [sym_string_expansion] = STATE(2090), - [sym_expansion] = STATE(2090), - [sym_command_substitution] = STATE(2090), - [sym_process_substitution] = STATE(2090), - [anon_sym_RBRACE] = ACTIONS(4853), - [sym__special_characters] = ACTIONS(4855), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(4857), - [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(4857), - }, - [1776] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_RPAREN] = ACTIONS(2868), - [sym__special_characters] = ACTIONS(2868), - [anon_sym_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym_raw_string] = ACTIONS(2868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2868), - [anon_sym_BQUOTE] = ACTIONS(2868), - [anon_sym_LT_LPAREN] = ACTIONS(2868), - [anon_sym_GT_LPAREN] = ACTIONS(2868), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2868), - }, - [1777] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4859), - }, - [1778] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1779] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_RPAREN] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2876), - }, - [1780] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4863), - }, - [1781] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4865), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1782] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4867), - }, - [1783] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4853), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1784] = { - [sym_concatenation] = STATE(2098), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2098), - [anon_sym_RBRACE] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4871), - [anon_sym_COLON_QMARK] = ACTIONS(4871), - [anon_sym_COLON_DASH] = ACTIONS(4871), - [anon_sym_PERCENT] = ACTIONS(4871), - [anon_sym_DASH] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1785] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_RPAREN] = ACTIONS(2948), - [sym__special_characters] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), - [anon_sym_BQUOTE] = ACTIONS(2948), - [anon_sym_LT_LPAREN] = ACTIONS(2948), - [anon_sym_GT_LPAREN] = ACTIONS(2948), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2948), - }, - [1786] = { - [sym_concatenation] = STATE(2100), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2100), - [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_EQ] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1787] = { - [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] = { - [sym_concatenation] = STATE(2102), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2102), - [anon_sym_RBRACE] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1789] = { - [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] = { - [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_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(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_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_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_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), - [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), - }, - [1796] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4891), - [sym_comment] = ACTIONS(53), - }, - [1797] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4893), - [sym_comment] = ACTIONS(53), - }, - [1798] = { - [anon_sym_RBRACE] = ACTIONS(4893), - [sym_comment] = ACTIONS(53), - }, - [1799] = { - [sym_concatenation] = STATE(2108), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2108), - [anon_sym_RBRACE] = ACTIONS(4895), - [anon_sym_EQ] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4897), - [anon_sym_COLON_QMARK] = ACTIONS(4897), - [anon_sym_COLON_DASH] = ACTIONS(4897), - [anon_sym_PERCENT] = ACTIONS(4897), - [anon_sym_DASH] = ACTIONS(4897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1800] = { - [sym_file_descriptor] = ACTIONS(3874), - [sym__concat] = ACTIONS(3874), - [sym_variable_name] = ACTIONS(3874), - [anon_sym_esac] = ACTIONS(3876), - [anon_sym_PIPE] = ACTIONS(3876), - [anon_sym_RPAREN] = ACTIONS(3876), - [anon_sym_SEMI_SEMI] = ACTIONS(3876), - [anon_sym_PIPE_AMP] = ACTIONS(3876), - [anon_sym_AMP_AMP] = ACTIONS(3876), - [anon_sym_PIPE_PIPE] = ACTIONS(3876), - [anon_sym_LT] = ACTIONS(3876), - [anon_sym_GT] = ACTIONS(3876), - [anon_sym_GT_GT] = ACTIONS(3876), - [anon_sym_AMP_GT] = ACTIONS(3876), - [anon_sym_AMP_GT_GT] = ACTIONS(3876), - [anon_sym_LT_AMP] = ACTIONS(3876), - [anon_sym_GT_AMP] = ACTIONS(3876), - [sym__special_characters] = ACTIONS(3876), - [anon_sym_DQUOTE] = ACTIONS(3876), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym_raw_string] = ACTIONS(3876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), - [anon_sym_BQUOTE] = ACTIONS(3876), - [anon_sym_LT_LPAREN] = ACTIONS(3876), - [anon_sym_GT_LPAREN] = ACTIONS(3876), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LF] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3876), - }, - [1801] = { - [sym_concatenation] = STATE(2110), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2110), - [anon_sym_RBRACE] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(4903), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4905), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4903), - [anon_sym_COLON_QMARK] = ACTIONS(4903), - [anon_sym_COLON_DASH] = ACTIONS(4903), - [anon_sym_PERCENT] = ACTIONS(4903), - [anon_sym_DASH] = ACTIONS(4903), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1802] = { - [sym_file_descriptor] = ACTIONS(3884), - [sym__concat] = ACTIONS(3884), - [sym_variable_name] = ACTIONS(3884), - [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), - [anon_sym_LT] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3886), - [anon_sym_GT_GT] = ACTIONS(3886), - [anon_sym_AMP_GT] = ACTIONS(3886), - [anon_sym_AMP_GT_GT] = ACTIONS(3886), - [anon_sym_LT_AMP] = ACTIONS(3886), - [anon_sym_GT_AMP] = ACTIONS(3886), - [sym__special_characters] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym_raw_string] = ACTIONS(3886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), - [anon_sym_BQUOTE] = ACTIONS(3886), - [anon_sym_LT_LPAREN] = ACTIONS(3886), - [anon_sym_GT_LPAREN] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LF] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3886), - }, - [1803] = { - [sym_concatenation] = STATE(2112), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2112), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(4909), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1804] = { - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [sym_variable_name] = ACTIONS(3939), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), - }, - [1805] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4913), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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_word] = ACTIONS(3967), - [anon_sym_SEMI] = ACTIONS(3967), - [anon_sym_LF] = ACTIONS(3965), - [anon_sym_AMP] = ACTIONS(3967), - }, - [1807] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(3973), - [anon_sym_SEMI] = ACTIONS(3973), - [anon_sym_LF] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3973), - }, - [1809] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4917), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(3979), - [anon_sym_SEMI] = ACTIONS(3979), - [anon_sym_LF] = ACTIONS(3977), - [anon_sym_AMP] = ACTIONS(3979), - }, - [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_word] = ACTIONS(4003), - [anon_sym_SEMI] = ACTIONS(4003), - [anon_sym_LF] = ACTIONS(4001), - [anon_sym_AMP] = ACTIONS(4003), - }, - [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), - [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(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(4919), - [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), - }, - [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(2395), - }, - [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(1648), - }, - [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(1648), - }, - [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(1655), - }, - [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(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), - }, - [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(4930), - }, - [1820] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(4932), - [sym_comment] = ACTIONS(53), - }, - [1821] = { - [sym_concatenation] = STATE(2125), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2125), - [anon_sym_RBRACE] = ACTIONS(4934), - [anon_sym_EQ] = ACTIONS(4936), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4938), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_COLON] = ACTIONS(4936), - [anon_sym_COLON_QMARK] = ACTIONS(4936), - [anon_sym_COLON_DASH] = ACTIONS(4936), - [anon_sym_PERCENT] = ACTIONS(4936), - [anon_sym_DASH] = ACTIONS(4936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1822] = { - [sym_concatenation] = STATE(2128), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2128), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_EQ] = ACTIONS(4944), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4946), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_COLON] = ACTIONS(4944), - [anon_sym_COLON_QMARK] = ACTIONS(4944), - [anon_sym_COLON_DASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1823] = { - [sym_concatenation] = STATE(2130), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2130), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4950), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(4954), - [anon_sym_COLON] = ACTIONS(4950), - [anon_sym_COLON_QMARK] = ACTIONS(4950), - [anon_sym_COLON_DASH] = ACTIONS(4950), - [anon_sym_PERCENT] = ACTIONS(4950), - [anon_sym_DASH] = ACTIONS(4950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1824] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_EQ_TILDE] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1772), - }, - [1825] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4956), - }, - [1826] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4958), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(1816), - }, - [1828] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4960), - }, - [1829] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(1824), - }, - [1831] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4964), - }, - [1832] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(1830), - }, - [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_word] = ACTIONS(819), - }, - [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(4970), - [anon_sym_LF] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4970), - }, - [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_word] = ACTIONS(819), - }, - [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(1864), - }, - [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), - }, - [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(3804), - [anon_sym_SEMI] = ACTIONS(3804), - [anon_sym_LF] = ACTIONS(3802), - [anon_sym_AMP] = ACTIONS(3804), - }, - [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(3812), - [anon_sym_SEMI] = ACTIONS(3812), - [anon_sym_LF] = ACTIONS(3810), - [anon_sym_AMP] = ACTIONS(3812), - }, - [1850] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4990), - [sym_comment] = ACTIONS(53), - }, - [1851] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4992), - [sym_comment] = ACTIONS(53), - }, - [1852] = { - [anon_sym_RBRACE] = ACTIONS(4992), - [sym_comment] = ACTIONS(53), - }, - [1853] = { - [sym_concatenation] = STATE(2145), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2145), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_EQ] = ACTIONS(4996), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(4998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_COLON_QMARK] = ACTIONS(4996), - [anon_sym_COLON_DASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1854] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_esac] = ACTIONS(3876), - [anon_sym_PIPE] = ACTIONS(3876), - [anon_sym_SEMI_SEMI] = ACTIONS(3876), - [anon_sym_PIPE_AMP] = ACTIONS(3876), - [anon_sym_AMP_AMP] = ACTIONS(3876), - [anon_sym_PIPE_PIPE] = ACTIONS(3876), - [anon_sym_EQ_TILDE] = ACTIONS(3876), - [anon_sym_EQ_EQ] = ACTIONS(3876), - [anon_sym_EQ] = ACTIONS(3876), - [anon_sym_LT] = ACTIONS(3876), - [anon_sym_GT] = ACTIONS(3876), - [anon_sym_BANG_EQ] = ACTIONS(3876), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LF] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3876), - }, - [1855] = { - [sym_concatenation] = STATE(2147), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2147), - [anon_sym_RBRACE] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5002), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5004), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5002), - [anon_sym_COLON_QMARK] = ACTIONS(5002), - [anon_sym_COLON_DASH] = ACTIONS(5002), - [anon_sym_PERCENT] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1856] = { - [sym__concat] = ACTIONS(3884), - [anon_sym_esac] = ACTIONS(3886), - [anon_sym_PIPE] = 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), - [anon_sym_EQ_TILDE] = ACTIONS(3886), - [anon_sym_EQ_EQ] = ACTIONS(3886), - [anon_sym_EQ] = ACTIONS(3886), - [anon_sym_LT] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3886), - [anon_sym_BANG_EQ] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LF] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3886), - }, - [1857] = { - [sym_concatenation] = STATE(2149), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2149), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_EQ] = ACTIONS(5008), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5008), - [anon_sym_COLON_QMARK] = ACTIONS(5008), - [anon_sym_COLON_DASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1858] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_EQ_TILDE] = ACTIONS(3941), - [anon_sym_EQ_EQ] = ACTIONS(3941), - [anon_sym_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_BANG_EQ] = ACTIONS(3941), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), - }, - [1859] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5012), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(3967), - [anon_sym_SEMI] = ACTIONS(3967), - [anon_sym_LF] = ACTIONS(3965), - [anon_sym_AMP] = ACTIONS(3967), - }, - [1861] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(3973), - [anon_sym_SEMI] = ACTIONS(3973), - [anon_sym_LF] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3973), - }, - [1863] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(3280), - }, - [1867] = { - [sym__terminated_statement] = STATE(1042), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_LF] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4432), + }, + [1538] = { + [anon_sym_esac] = ACTIONS(4434), + [anon_sym_PIPE] = ACTIONS(4436), + [anon_sym_RPAREN] = ACTIONS(4434), + [anon_sym_SEMI_SEMI] = ACTIONS(4434), + [anon_sym_PIPE_AMP] = ACTIONS(4434), + [anon_sym_AMP_AMP] = ACTIONS(4434), + [anon_sym_PIPE_PIPE] = ACTIONS(4434), + [anon_sym_BQUOTE] = ACTIONS(4434), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4436), + [anon_sym_LF] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4436), + }, + [1539] = { + [anon_sym_esac] = ACTIONS(3478), + [anon_sym_PIPE] = ACTIONS(3480), + [anon_sym_RPAREN] = ACTIONS(3478), + [anon_sym_SEMI_SEMI] = ACTIONS(3478), + [anon_sym_PIPE_AMP] = ACTIONS(3478), + [anon_sym_AMP_AMP] = ACTIONS(3478), + [anon_sym_PIPE_PIPE] = ACTIONS(3478), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_LF] = ACTIONS(3478), + [anon_sym_AMP] = ACTIONS(3480), + }, + [1540] = { + [sym__terminated_statement] = STATE(1946), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -52685,16 +46926,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(1042), + [aux_sym_program_repeat1] = STATE(1946), [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(5020), - [anon_sym_elif] = ACTIONS(5020), - [anon_sym_else] = ACTIONS(5020), + [anon_sym_fi] = ACTIONS(4438), + [anon_sym_elif] = ACTIONS(4438), + [anon_sym_else] = ACTIONS(4438), [anon_sym_case] = ACTIONS(17), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), @@ -52727,47 +46968,8528 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, + [1541] = { + [sym__terminated_statement] = STATE(1541), + [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(1541), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(891), + [sym_variable_name] = ACTIONS(894), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(902), + [anon_sym_if] = ACTIONS(905), + [anon_sym_fi] = ACTIONS(3482), + [anon_sym_case] = ACTIONS(908), + [anon_sym_function] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(923), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_typeset] = ACTIONS(926), + [anon_sym_export] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_local] = ACTIONS(926), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(932), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(932), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_AMP] = ACTIONS(935), + [sym__special_characters] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(962), + }, + [1542] = { + [anon_sym_esac] = ACTIONS(4440), + [anon_sym_PIPE] = ACTIONS(4442), + [anon_sym_RPAREN] = ACTIONS(4440), + [anon_sym_SEMI_SEMI] = ACTIONS(4440), + [anon_sym_PIPE_AMP] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_PIPE_PIPE] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4440), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4442), + [anon_sym_LF] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(4442), + }, + [1543] = { + [anon_sym_fi] = ACTIONS(4444), + [sym_comment] = ACTIONS(53), + }, + [1544] = { + [sym_concatenation] = STATE(1950), + [sym_string] = STATE(1949), + [sym_simple_expansion] = STATE(1949), + [sym_string_expansion] = STATE(1949), + [sym_expansion] = STATE(1949), + [sym_command_substitution] = STATE(1949), + [sym_process_substitution] = STATE(1949), + [sym__special_characters] = ACTIONS(4446), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(4448), + [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(4448), + }, + [1545] = { + [sym__terminated_statement] = STATE(1974), + [sym_for_statement] = STATE(1969), + [sym_c_style_for_statement] = STATE(1969), + [sym_while_statement] = STATE(1969), + [sym_if_statement] = STATE(1969), + [sym_case_statement] = STATE(1969), + [sym_function_definition] = STATE(1969), + [sym_subshell] = STATE(1969), + [sym_pipeline] = STATE(1969), + [sym_list] = STATE(1969), + [sym_negated_command] = STATE(1969), + [sym_test_command] = STATE(1969), + [sym_declaration_command] = STATE(1969), + [sym_unset_command] = STATE(1969), + [sym_command] = STATE(1969), + [sym_command_name] = STATE(1970), + [sym_variable_assignment] = STATE(1971), + [sym_subscript] = STATE(1972), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(1973), + [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), + [aux_sym_program_repeat1] = STATE(1974), + [aux_sym_command_repeat1] = STATE(1975), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(4454), + [anon_sym_SEMI_SEMI] = ACTIONS(4456), + [anon_sym_function] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym_declare] = ACTIONS(4466), + [anon_sym_typeset] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_readonly] = ACTIONS(4466), + [anon_sym_local] = ACTIONS(4466), + [anon_sym_unset] = ACTIONS(4468), + [anon_sym_unsetenv] = ACTIONS(4468), + [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(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4486), + }, + [1546] = { + [aux_sym_case_item_repeat1] = STATE(1977), + [anon_sym_PIPE] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(4488), + [sym_comment] = ACTIONS(53), + }, + [1547] = { + [aux_sym_concatenation_repeat1] = STATE(1978), + [sym__concat] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + }, + [1548] = { + [sym__terminated_statement] = STATE(1982), + [sym_for_statement] = STATE(1980), + [sym_c_style_for_statement] = STATE(1980), + [sym_while_statement] = STATE(1980), + [sym_if_statement] = STATE(1980), + [sym_case_statement] = STATE(1980), + [sym_function_definition] = STATE(1980), + [sym_subshell] = STATE(1980), + [sym_pipeline] = STATE(1980), + [sym_list] = STATE(1980), + [sym_negated_command] = STATE(1980), + [sym_test_command] = STATE(1980), + [sym_declaration_command] = STATE(1980), + [sym_unset_command] = STATE(1980), + [sym_command] = STATE(1980), + [sym_command_name] = STATE(1970), + [sym_variable_assignment] = STATE(1981), + [sym_subscript] = STATE(1972), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(1973), + [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), + [aux_sym_program_repeat1] = STATE(1982), + [aux_sym_command_repeat1] = STATE(1975), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(4490), + [anon_sym_SEMI_SEMI] = ACTIONS(4492), + [anon_sym_function] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym_declare] = ACTIONS(4466), + [anon_sym_typeset] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_readonly] = ACTIONS(4466), + [anon_sym_local] = ACTIONS(4466), + [anon_sym_unset] = ACTIONS(4468), + [anon_sym_unsetenv] = ACTIONS(4468), + [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(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4486), + }, + [1549] = { + [aux_sym_case_item_repeat1] = STATE(1977), + [anon_sym_PIPE] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(4494), + [sym_comment] = ACTIONS(53), + }, + [1550] = { + [anon_sym_esac] = ACTIONS(4496), + [anon_sym_PIPE] = ACTIONS(4498), + [anon_sym_RPAREN] = ACTIONS(4496), + [anon_sym_SEMI_SEMI] = ACTIONS(4496), + [anon_sym_PIPE_AMP] = ACTIONS(4496), + [anon_sym_AMP_AMP] = ACTIONS(4496), + [anon_sym_PIPE_PIPE] = ACTIONS(4496), + [anon_sym_BQUOTE] = ACTIONS(4496), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4498), + [anon_sym_LF] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4498), + }, + [1551] = { + [anon_sym_esac] = ACTIONS(4500), + [sym_comment] = ACTIONS(53), + }, + [1552] = { + [sym_case_item] = STATE(1552), + [sym_concatenation] = STATE(1987), + [sym_string] = STATE(1986), + [sym_simple_expansion] = STATE(1986), + [sym_string_expansion] = STATE(1986), + [sym_expansion] = STATE(1986), + [sym_command_substitution] = STATE(1986), + [sym_process_substitution] = STATE(1986), + [aux_sym_case_statement_repeat1] = STATE(1552), + [sym__special_characters] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4505), + [anon_sym_DOLLAR] = ACTIONS(4508), + [sym_raw_string] = ACTIONS(4511), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4520), + [anon_sym_LT_LPAREN] = ACTIONS(4523), + [anon_sym_GT_LPAREN] = ACTIONS(4523), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4511), + }, + [1553] = { + [anon_sym_esac] = ACTIONS(4526), + [anon_sym_PIPE] = ACTIONS(4528), + [anon_sym_RPAREN] = ACTIONS(4526), + [anon_sym_SEMI_SEMI] = ACTIONS(4526), + [anon_sym_PIPE_AMP] = ACTIONS(4526), + [anon_sym_AMP_AMP] = ACTIONS(4526), + [anon_sym_PIPE_PIPE] = ACTIONS(4526), + [anon_sym_BQUOTE] = ACTIONS(4526), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4528), + [anon_sym_LF] = ACTIONS(4526), + [anon_sym_AMP] = ACTIONS(4528), + }, + [1554] = { + [sym_case_item] = STATE(1552), + [sym_last_case_item] = STATE(1988), + [sym_concatenation] = STATE(1076), + [sym_string] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_command_substitution] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [aux_sym_case_statement_repeat1] = STATE(1552), + [sym__special_characters] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2280), + [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(2280), + }, + [1555] = { + [anon_sym_esac] = ACTIONS(4530), + [anon_sym_PIPE] = ACTIONS(4532), + [anon_sym_RPAREN] = ACTIONS(4530), + [anon_sym_SEMI_SEMI] = ACTIONS(4530), + [anon_sym_PIPE_AMP] = ACTIONS(4530), + [anon_sym_AMP_AMP] = ACTIONS(4530), + [anon_sym_PIPE_PIPE] = ACTIONS(4530), + [anon_sym_BQUOTE] = ACTIONS(4530), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4532), + [anon_sym_LF] = ACTIONS(4530), + [anon_sym_AMP] = ACTIONS(4532), + }, + [1556] = { + [anon_sym_esac] = ACTIONS(4534), + [sym_comment] = ACTIONS(53), + }, + [1557] = { + [anon_sym_esac] = ACTIONS(4536), + [anon_sym_PIPE] = ACTIONS(4538), + [anon_sym_RPAREN] = ACTIONS(4536), + [anon_sym_SEMI_SEMI] = ACTIONS(4536), + [anon_sym_PIPE_AMP] = ACTIONS(4536), + [anon_sym_AMP_AMP] = ACTIONS(4536), + [anon_sym_PIPE_PIPE] = ACTIONS(4536), + [anon_sym_BQUOTE] = ACTIONS(4536), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4538), + [anon_sym_LF] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + }, + [1558] = { + [sym_case_item] = STATE(1552), + [sym_last_case_item] = STATE(1990), + [sym_concatenation] = STATE(1076), + [sym_string] = STATE(1074), + [sym_simple_expansion] = STATE(1074), + [sym_string_expansion] = STATE(1074), + [sym_expansion] = STATE(1074), + [sym_command_substitution] = STATE(1074), + [sym_process_substitution] = STATE(1074), + [aux_sym_case_statement_repeat1] = STATE(1552), + [sym__special_characters] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [sym_raw_string] = ACTIONS(2280), + [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(2280), + }, + [1559] = { + [sym__concat] = ACTIONS(3903), + [anon_sym_in] = ACTIONS(3903), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3903), + }, + [1560] = { + [sym__concat] = ACTIONS(3911), + [anon_sym_in] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3911), + }, + [1561] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4540), + [sym_comment] = ACTIONS(53), + }, + [1562] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4542), + [sym_comment] = ACTIONS(53), + }, + [1563] = { + [anon_sym_RBRACE] = ACTIONS(4542), + [sym_comment] = ACTIONS(53), + }, + [1564] = { + [sym_concatenation] = STATE(1994), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1994), + [anon_sym_RBRACE] = ACTIONS(4544), + [anon_sym_EQ] = ACTIONS(4546), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4548), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_COLON_QMARK] = ACTIONS(4546), + [anon_sym_COLON_DASH] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1565] = { + [sym__concat] = ACTIONS(3975), + [anon_sym_in] = ACTIONS(3975), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3975), + }, + [1566] = { + [sym_concatenation] = STATE(1996), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1996), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4552), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4552), + [anon_sym_COLON_QMARK] = ACTIONS(4552), + [anon_sym_COLON_DASH] = ACTIONS(4552), + [anon_sym_PERCENT] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4552), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1567] = { + [sym__concat] = ACTIONS(3985), + [anon_sym_in] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3985), + }, + [1568] = { + [sym_concatenation] = STATE(1998), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1998), + [anon_sym_RBRACE] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4558), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4560), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4558), + [anon_sym_COLON_QMARK] = ACTIONS(4558), + [anon_sym_COLON_DASH] = ACTIONS(4558), + [anon_sym_PERCENT] = ACTIONS(4558), + [anon_sym_DASH] = ACTIONS(4558), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1569] = { + [sym__concat] = ACTIONS(4040), + [anon_sym_in] = ACTIONS(4040), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4040), + }, + [1570] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4562), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1571] = { + [sym__concat] = ACTIONS(4062), + [anon_sym_in] = ACTIONS(4062), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + }, + [1572] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4564), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1573] = { + [sym__concat] = ACTIONS(4068), + [anon_sym_in] = ACTIONS(4068), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4068), + }, + [1574] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1575] = { + [sym__concat] = ACTIONS(4074), + [anon_sym_in] = ACTIONS(4074), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), + }, + [1576] = { + [sym__concat] = ACTIONS(4098), + [anon_sym_in] = ACTIONS(4098), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4098), + }, + [1577] = { + [anon_sym_esac] = ACTIONS(4568), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_SEMI_SEMI] = ACTIONS(4568), + [anon_sym_PIPE_AMP] = ACTIONS(4568), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_PIPE_PIPE] = ACTIONS(4568), + [anon_sym_BQUOTE] = ACTIONS(4568), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4570), + [anon_sym_LF] = ACTIONS(4568), + [anon_sym_AMP] = ACTIONS(4570), + }, + [1578] = { + [aux_sym_concatenation_repeat1] = STATE(1581), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), + }, + [1579] = { + [aux_sym_concatenation_repeat1] = STATE(1581), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [1580] = { + [anon_sym_esac] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [1581] = { + [aux_sym_concatenation_repeat1] = STATE(2002), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [1582] = { + [aux_sym_concatenation_repeat1] = STATE(1582), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(3231), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [1583] = { + [sym_file_redirect] = STATE(1577), + [sym_file_descriptor] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(3565), + [anon_sym_RPAREN] = ACTIONS(3567), + [anon_sym_SEMI_SEMI] = ACTIONS(3567), + [anon_sym_PIPE_AMP] = ACTIONS(3567), + [anon_sym_AMP_AMP] = ACTIONS(3567), + [anon_sym_PIPE_PIPE] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_GT] = ACTIONS(2381), + [anon_sym_GT_GT] = ACTIONS(2383), + [anon_sym_AMP_GT] = ACTIONS(2381), + [anon_sym_AMP_GT_GT] = ACTIONS(2383), + [anon_sym_LT_AMP] = ACTIONS(2383), + [anon_sym_GT_AMP] = ACTIONS(2383), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3565), + [anon_sym_LF] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + }, + [1584] = { + [sym_concatenation] = STATE(1580), + [sym_string] = STATE(2004), + [sym_simple_expansion] = STATE(2004), + [sym_string_expansion] = STATE(2004), + [sym_expansion] = STATE(2004), + [sym_command_substitution] = STATE(2004), + [sym_process_substitution] = STATE(2004), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(4574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4574), + }, + [1585] = { + [aux_sym_concatenation_repeat1] = STATE(2005), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(661), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [1586] = { + [aux_sym_concatenation_repeat1] = STATE(2005), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [1587] = { + [sym_concatenation] = STATE(1615), + [sym_string] = STATE(2007), + [sym_simple_expansion] = STATE(2007), + [sym_string_expansion] = STATE(2007), + [sym_expansion] = STATE(2007), + [sym_command_substitution] = STATE(2007), + [sym_process_substitution] = STATE(2007), + [sym__special_characters] = ACTIONS(4576), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(4578), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4578), + }, + [1588] = { + [aux_sym_concatenation_repeat1] = STATE(2008), + [sym_file_descriptor] = ACTIONS(661), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(661), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_AMP_GT] = ACTIONS(665), + [anon_sym_AMP_GT_GT] = ACTIONS(661), + [anon_sym_LT_AMP] = ACTIONS(661), + [anon_sym_GT_AMP] = ACTIONS(661), + [anon_sym_LT_LT] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(661), + [anon_sym_LT_LT_LT] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [1589] = { + [aux_sym_concatenation_repeat1] = STATE(2008), + [sym_file_descriptor] = ACTIONS(679), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_LT_LT_DASH] = ACTIONS(679), + [anon_sym_LT_LT_LT] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [1590] = { + [aux_sym_concatenation_repeat1] = STATE(2008), + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1936), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1936), + [anon_sym_LT_AMP] = ACTIONS(1936), + [anon_sym_GT_AMP] = ACTIONS(1936), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1936), + [anon_sym_LT_LT_LT] = ACTIONS(1936), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [1591] = { + [aux_sym_concatenation_repeat1] = STATE(2008), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), + }, + [1592] = { + [sym_file_redirect] = STATE(1592), + [sym_heredoc_redirect] = STATE(1592), + [sym_herestring_redirect] = STATE(1592), + [aux_sym_while_statement_repeat1] = STATE(1592), + [sym_file_descriptor] = ACTIONS(4580), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), + [anon_sym_PIPE_AMP] = ACTIONS(1948), + [anon_sym_AMP_AMP] = ACTIONS(1948), + [anon_sym_PIPE_PIPE] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_GT_GT] = ACTIONS(4586), + [anon_sym_AMP_GT] = ACTIONS(4583), + [anon_sym_AMP_GT_GT] = ACTIONS(4586), + [anon_sym_LT_AMP] = ACTIONS(4586), + [anon_sym_GT_AMP] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_LT_LT_DASH] = ACTIONS(3683), + [anon_sym_LT_LT_LT] = ACTIONS(4589), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1953), + }, + [1593] = { + [aux_sym_concatenation_repeat1] = STATE(1593), + [sym__simple_heredoc_body] = ACTIONS(1664), + [sym__heredoc_body_beginning] = ACTIONS(1664), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [1594] = { + [sym_file_descriptor] = ACTIONS(3201), + [sym_variable_name] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_GT_GT] = ACTIONS(3201), + [anon_sym_AMP_GT] = ACTIONS(3203), + [anon_sym_AMP_GT_GT] = ACTIONS(3201), + [anon_sym_LT_AMP] = ACTIONS(3201), + [anon_sym_GT_AMP] = ACTIONS(3201), + [sym__special_characters] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [anon_sym_DOLLAR] = ACTIONS(3203), + [sym_raw_string] = ACTIONS(3201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3201), + [anon_sym_BQUOTE] = ACTIONS(3201), + [anon_sym_LT_LPAREN] = ACTIONS(3201), + [anon_sym_GT_LPAREN] = ACTIONS(3201), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3201), + }, + [1595] = { + [sym__concat] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [anon_sym_RBRACK] = ACTIONS(3903), + [anon_sym_EQ_TILDE] = ACTIONS(3903), + [anon_sym_EQ_EQ] = ACTIONS(3903), + [anon_sym_EQ] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(3903), + [anon_sym_BANG_EQ] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3903), + }, + [1596] = { + [sym__concat] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_RBRACK] = ACTIONS(3911), + [anon_sym_EQ_TILDE] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_EQ] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3911), + }, + [1597] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4592), + [sym_comment] = ACTIONS(53), + }, + [1598] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4594), + [sym_comment] = ACTIONS(53), + }, + [1599] = { + [anon_sym_RBRACE] = ACTIONS(4594), + [sym_comment] = ACTIONS(53), + }, + [1600] = { + [sym_concatenation] = STATE(2012), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2012), + [anon_sym_RBRACE] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4598), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1601] = { + [sym__concat] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_RBRACK] = ACTIONS(3975), + [anon_sym_EQ_TILDE] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_EQ] = ACTIONS(3977), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_GT] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3975), + }, + [1602] = { + [sym_concatenation] = STATE(2014), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2014), + [anon_sym_RBRACE] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4604), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1603] = { + [sym__concat] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_RBRACK] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_LT] = ACTIONS(3985), + [anon_sym_GT] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3985), + }, + [1604] = { + [sym_concatenation] = STATE(2016), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2016), + [anon_sym_RBRACE] = ACTIONS(4608), + [anon_sym_EQ] = ACTIONS(4610), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4612), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4610), + [anon_sym_COLON_QMARK] = ACTIONS(4610), + [anon_sym_COLON_DASH] = ACTIONS(4610), + [anon_sym_PERCENT] = ACTIONS(4610), + [anon_sym_DASH] = ACTIONS(4610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1605] = { + [sym__concat] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_RBRACK] = ACTIONS(4040), + [anon_sym_EQ_TILDE] = ACTIONS(4040), + [anon_sym_EQ_EQ] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(4042), + [anon_sym_LT] = ACTIONS(4040), + [anon_sym_GT] = ACTIONS(4040), + [anon_sym_BANG_EQ] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4040), + }, + [1606] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4614), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1607] = { + [sym__concat] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [anon_sym_RBRACK] = ACTIONS(4062), + [anon_sym_EQ_TILDE] = ACTIONS(4062), + [anon_sym_EQ_EQ] = ACTIONS(4062), + [anon_sym_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_BANG_EQ] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4062), + }, + [1608] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4616), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1609] = { + [sym__concat] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_RBRACK] = ACTIONS(4068), + [anon_sym_EQ_TILDE] = ACTIONS(4068), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4068), + }, + [1610] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1611] = { + [sym__concat] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_RBRACK] = ACTIONS(4074), + [anon_sym_EQ_TILDE] = ACTIONS(4074), + [anon_sym_EQ_EQ] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_BANG_EQ] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4074), + }, + [1612] = { + [sym__concat] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_RBRACK] = ACTIONS(4098), + [anon_sym_EQ_TILDE] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4098), + }, + [1613] = { + [aux_sym_concatenation_repeat1] = STATE(1617), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), + }, + [1614] = { + [aux_sym_concatenation_repeat1] = STATE(1617), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [1615] = { + [sym_file_descriptor] = ACTIONS(985), + [anon_sym_esac] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [1616] = { + [sym_string] = STATE(2020), + [sym_simple_expansion] = STATE(2020), + [sym_string_expansion] = STATE(2020), + [sym_expansion] = STATE(2020), + [sym_command_substitution] = STATE(2020), + [sym_process_substitution] = STATE(2020), + [sym__special_characters] = ACTIONS(4620), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(4620), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4620), + }, + [1617] = { + [aux_sym_concatenation_repeat1] = STATE(2021), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [1618] = { + [sym_file_descriptor] = ACTIONS(699), + [sym__concat] = ACTIONS(699), + [anon_sym_esac] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(699), + [anon_sym_LT_AMP] = ACTIONS(699), + [anon_sym_GT_AMP] = ACTIONS(699), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(699), + [anon_sym_LT_LT_LT] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), + }, + [1619] = { + [anon_sym_DQUOTE] = ACTIONS(4622), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [1620] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(4622), + [anon_sym_DOLLAR] = ACTIONS(4624), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [1621] = { + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_BQUOTE] = ACTIONS(731), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [1622] = { + [sym_file_descriptor] = ACTIONS(735), + [sym__concat] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = 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_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [1623] = { + [sym_file_descriptor] = ACTIONS(739), + [sym__concat] = ACTIONS(739), + [anon_sym_esac] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_LT] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), + }, + [1624] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(4626), + [sym_comment] = ACTIONS(53), + }, + [1625] = { + [sym_subscript] = STATE(2028), + [sym_variable_name] = ACTIONS(4628), + [anon_sym_DOLLAR] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4630), + [anon_sym_AT] = ACTIONS(4630), + [anon_sym_QMARK] = ACTIONS(4630), + [anon_sym_0] = ACTIONS(4634), + [anon_sym__] = ACTIONS(4634), + }, + [1626] = { + [sym_concatenation] = STATE(2031), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2031), + [anon_sym_RBRACE] = ACTIONS(4636), + [anon_sym_EQ] = ACTIONS(4638), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4640), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4638), + [anon_sym_COLON_QMARK] = ACTIONS(4638), + [anon_sym_COLON_DASH] = ACTIONS(4638), + [anon_sym_PERCENT] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1627] = { + [sym_concatenation] = STATE(2034), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2034), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4646), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4650), + [anon_sym_COLON] = ACTIONS(4646), + [anon_sym_COLON_QMARK] = ACTIONS(4646), + [anon_sym_COLON_DASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1628] = { + [sym_concatenation] = STATE(2037), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2037), + [anon_sym_RBRACE] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(4654), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4656), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4658), + [anon_sym_COLON] = ACTIONS(4654), + [anon_sym_COLON_QMARK] = ACTIONS(4654), + [anon_sym_COLON_DASH] = ACTIONS(4654), + [anon_sym_PERCENT] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1629] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4660), + [anon_sym_SEMI_SEMI] = ACTIONS(4662), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_LF] = ACTIONS(4662), + [anon_sym_AMP] = ACTIONS(4664), + }, + [1630] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4660), + [anon_sym_SEMI_SEMI] = ACTIONS(4662), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4664), + [anon_sym_LF] = ACTIONS(4662), + [anon_sym_AMP] = ACTIONS(4664), + }, + [1631] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2040), + [sym_c_style_for_statement] = STATE(2040), + [sym_while_statement] = STATE(2040), + [sym_if_statement] = STATE(2040), + [sym_case_statement] = STATE(2040), + [sym_function_definition] = STATE(2040), + [sym_subshell] = STATE(2040), + [sym_pipeline] = STATE(2040), + [sym_list] = STATE(2040), + [sym_negated_command] = STATE(2040), + [sym_test_command] = STATE(2040), + [sym_declaration_command] = STATE(2040), + [sym_unset_command] = STATE(2040), + [sym_command] = STATE(2040), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2041), + [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), + }, + [1632] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4666), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(4660), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4668), + [anon_sym_LF] = ACTIONS(4666), + [anon_sym_AMP] = ACTIONS(4668), + }, + [1633] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4666), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(4660), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4668), + [anon_sym_LF] = ACTIONS(4666), + [anon_sym_AMP] = ACTIONS(4668), + }, + [1634] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2043), + [sym_c_style_for_statement] = STATE(2043), + [sym_while_statement] = STATE(2043), + [sym_if_statement] = STATE(2043), + [sym_case_statement] = STATE(2043), + [sym_function_definition] = STATE(2043), + [sym_subshell] = STATE(2043), + [sym_pipeline] = STATE(2043), + [sym_list] = STATE(2043), + [sym_negated_command] = STATE(2043), + [sym_test_command] = STATE(2043), + [sym_declaration_command] = STATE(2043), + [sym_unset_command] = STATE(2043), + [sym_command] = STATE(2043), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2044), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [1635] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4670), + [anon_sym_SEMI_SEMI] = ACTIONS(4672), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_LF] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4674), + }, + [1636] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4670), + [anon_sym_SEMI_SEMI] = ACTIONS(4672), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_LF] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4674), + }, + [1637] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2047), + [sym_c_style_for_statement] = STATE(2047), + [sym_while_statement] = STATE(2047), + [sym_if_statement] = STATE(2047), + [sym_case_statement] = STATE(2047), + [sym_function_definition] = STATE(2047), + [sym_subshell] = STATE(2047), + [sym_pipeline] = STATE(2047), + [sym_list] = STATE(2047), + [sym_negated_command] = STATE(2047), + [sym_test_command] = STATE(2047), + [sym_declaration_command] = STATE(2047), + [sym_unset_command] = STATE(2047), + [sym_command] = STATE(2047), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2048), + [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), + }, + [1638] = { + [sym__concat] = ACTIONS(3903), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3903), + [anon_sym_EQ_TILDE] = ACTIONS(3903), + [anon_sym_EQ_EQ] = ACTIONS(3903), + [anon_sym_EQ] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(3903), + [anon_sym_BANG_EQ] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3903), + }, + [1639] = { + [sym__concat] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3913), + [anon_sym_RPAREN] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3911), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3911), + [anon_sym_EQ_TILDE] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3911), + [anon_sym_EQ] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3911), + }, + [1640] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4676), + [sym_comment] = ACTIONS(53), + }, + [1641] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4678), + [sym_comment] = ACTIONS(53), + }, + [1642] = { + [anon_sym_RBRACE] = ACTIONS(4678), + [sym_comment] = ACTIONS(53), + }, + [1643] = { + [sym_concatenation] = STATE(2052), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2052), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(4682), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4684), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1644] = { + [sym__concat] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3975), + [anon_sym_EQ_TILDE] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_EQ] = ACTIONS(3977), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_GT] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3975), + }, + [1645] = { + [sym_concatenation] = STATE(2054), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2054), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4688), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1646] = { + [sym__concat] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_LT] = ACTIONS(3985), + [anon_sym_GT] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3985), + }, + [1647] = { + [sym_concatenation] = STATE(2056), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2056), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_EQ] = ACTIONS(4694), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4696), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1648] = { + [sym__concat] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4040), + [anon_sym_EQ_TILDE] = ACTIONS(4040), + [anon_sym_EQ_EQ] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(4042), + [anon_sym_LT] = ACTIONS(4040), + [anon_sym_GT] = ACTIONS(4040), + [anon_sym_BANG_EQ] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4040), + }, + [1649] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1650] = { + [sym__concat] = ACTIONS(4062), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4062), + [anon_sym_EQ_TILDE] = ACTIONS(4062), + [anon_sym_EQ_EQ] = ACTIONS(4062), + [anon_sym_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_BANG_EQ] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4062), + }, + [1651] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1652] = { + [sym__concat] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4068), + [anon_sym_EQ_TILDE] = ACTIONS(4068), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4068), + }, + [1653] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1654] = { + [sym__concat] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4074), + [anon_sym_EQ_TILDE] = ACTIONS(4074), + [anon_sym_EQ_EQ] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_BANG_EQ] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4074), + }, + [1655] = { + [sym__concat] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4098), + [anon_sym_EQ_TILDE] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4098), + }, + [1656] = { + [sym_variable_name] = ACTIONS(3201), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_RPAREN] = ACTIONS(3201), + [anon_sym_SEMI_SEMI] = ACTIONS(3201), + [anon_sym_PIPE_AMP] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [sym__special_characters] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [anon_sym_DOLLAR] = ACTIONS(3203), + [sym_raw_string] = ACTIONS(3201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3201), + [anon_sym_BQUOTE] = ACTIONS(3201), + [anon_sym_LT_LPAREN] = ACTIONS(3201), + [anon_sym_GT_LPAREN] = ACTIONS(3201), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3203), + [sym_word] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_LF] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3203), + }, + [1657] = { + [sym__concat] = ACTIONS(3903), + [sym_variable_name] = ACTIONS(3903), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3903), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3905), + [sym_word] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + }, + [1658] = { + [sym__concat] = ACTIONS(3911), + [sym_variable_name] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3913), + [sym_word] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [1659] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4704), + [sym_comment] = ACTIONS(53), + }, + [1660] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4706), + [sym_comment] = ACTIONS(53), + }, + [1661] = { + [anon_sym_RBRACE] = ACTIONS(4706), + [sym_comment] = ACTIONS(53), + }, + [1662] = { + [sym_concatenation] = STATE(2063), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2063), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4710), + [anon_sym_COLON_QMARK] = ACTIONS(4710), + [anon_sym_COLON_DASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1663] = { + [sym__concat] = ACTIONS(3975), + [sym_variable_name] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3975), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3977), + [sym_word] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), + }, + [1664] = { + [sym_concatenation] = STATE(2065), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2065), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4716), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4716), + [anon_sym_COLON_QMARK] = ACTIONS(4716), + [anon_sym_COLON_DASH] = ACTIONS(4716), + [anon_sym_PERCENT] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1665] = { + [sym__concat] = ACTIONS(3985), + [sym_variable_name] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3987), + [sym_word] = ACTIONS(3987), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [1666] = { + [sym_concatenation] = STATE(2067), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2067), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4722), + [anon_sym_COLON_QMARK] = ACTIONS(4722), + [anon_sym_COLON_DASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1667] = { + [sym__concat] = ACTIONS(4040), + [sym_variable_name] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4042), + [sym_word] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), + }, + [1668] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1669] = { + [sym__concat] = ACTIONS(4062), + [sym_variable_name] = ACTIONS(4062), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4062), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4064), + [sym_word] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), + }, + [1670] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1671] = { + [sym__concat] = ACTIONS(4068), + [sym_variable_name] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4068), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4070), + [sym_word] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), + }, + [1672] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1673] = { + [sym__concat] = ACTIONS(4074), + [sym_variable_name] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), + }, + [1674] = { + [sym__concat] = ACTIONS(4098), + [sym_variable_name] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4100), + [sym_word] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), + }, + [1675] = { + [sym__concat] = ACTIONS(3903), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3903), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3905), + [sym_word] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + }, + [1676] = { + [sym__concat] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3913), + [sym_word] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [1677] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4732), + [sym_comment] = ACTIONS(53), + }, + [1678] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4734), + [sym_comment] = ACTIONS(53), + }, + [1679] = { + [anon_sym_RBRACE] = ACTIONS(4734), + [sym_comment] = ACTIONS(53), + }, + [1680] = { + [sym_concatenation] = STATE(2074), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2074), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4738), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4738), + [anon_sym_COLON_DASH] = ACTIONS(4738), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1681] = { + [sym__concat] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3975), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3977), + [sym_word] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), + }, + [1682] = { + [sym_concatenation] = STATE(2076), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2076), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_EQ] = ACTIONS(4744), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4744), + [anon_sym_COLON_QMARK] = ACTIONS(4744), + [anon_sym_COLON_DASH] = ACTIONS(4744), + [anon_sym_PERCENT] = ACTIONS(4744), + [anon_sym_DASH] = ACTIONS(4744), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1683] = { + [sym__concat] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3987), + [sym_word] = ACTIONS(3987), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [1684] = { + [sym_concatenation] = STATE(2078), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2078), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(4750), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_COLON_QMARK] = ACTIONS(4750), + [anon_sym_COLON_DASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1685] = { + [sym__concat] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4042), + [sym_word] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), + }, + [1686] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1687] = { + [sym__concat] = ACTIONS(4062), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4062), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4064), + [sym_word] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), + }, + [1688] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1689] = { + [sym__concat] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4068), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4070), + [sym_word] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), + }, + [1690] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1691] = { + [sym__concat] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), + }, + [1692] = { + [sym__concat] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4100), + [sym_word] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), + }, + [1693] = { + [sym_file_descriptor] = ACTIONS(3903), + [sym__concat] = ACTIONS(3903), + [sym_variable_name] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_GT_GT] = ACTIONS(3903), + [anon_sym_AMP_GT] = ACTIONS(3905), + [anon_sym_AMP_GT_GT] = ACTIONS(3903), + [anon_sym_LT_AMP] = ACTIONS(3903), + [anon_sym_GT_AMP] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3903), + }, + [1694] = { + [sym_file_descriptor] = ACTIONS(3911), + [sym__concat] = ACTIONS(3911), + [sym_variable_name] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_AMP_GT] = ACTIONS(3913), + [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(3913), + [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(53), + [sym_word] = ACTIONS(3911), + }, + [1695] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4760), + [sym_comment] = ACTIONS(53), + }, + [1696] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4762), + [sym_comment] = ACTIONS(53), + }, + [1697] = { + [anon_sym_RBRACE] = ACTIONS(4762), + [sym_comment] = ACTIONS(53), + }, + [1698] = { + [sym_concatenation] = STATE(2085), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2085), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4766), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1699] = { + [sym_file_descriptor] = ACTIONS(3975), + [sym__concat] = ACTIONS(3975), + [sym_variable_name] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_GT] = ACTIONS(3975), + [anon_sym_AMP_GT] = ACTIONS(3977), + [anon_sym_AMP_GT_GT] = ACTIONS(3975), + [anon_sym_LT_AMP] = ACTIONS(3975), + [anon_sym_GT_AMP] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3975), + }, + [1700] = { + [sym_concatenation] = STATE(2087), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2087), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_EQ] = ACTIONS(4772), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4772), + [anon_sym_COLON_QMARK] = ACTIONS(4772), + [anon_sym_COLON_DASH] = ACTIONS(4772), + [anon_sym_PERCENT] = ACTIONS(4772), + [anon_sym_DASH] = ACTIONS(4772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1701] = { + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [sym_variable_name] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3985), + }, + [1702] = { + [sym_concatenation] = STATE(2089), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2089), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_EQ] = ACTIONS(4778), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4778), + [anon_sym_COLON_QMARK] = ACTIONS(4778), + [anon_sym_COLON_DASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1703] = { + [sym_file_descriptor] = ACTIONS(4040), + [sym__concat] = ACTIONS(4040), + [sym_variable_name] = ACTIONS(4040), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_GT_GT] = ACTIONS(4040), + [anon_sym_AMP_GT] = ACTIONS(4042), + [anon_sym_AMP_GT_GT] = ACTIONS(4040), + [anon_sym_LT_AMP] = ACTIONS(4040), + [anon_sym_GT_AMP] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4040), + }, + [1704] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1705] = { + [sym_file_descriptor] = ACTIONS(4062), + [sym__concat] = ACTIONS(4062), + [sym_variable_name] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4064), + [anon_sym_GT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_AMP_GT] = ACTIONS(4064), + [anon_sym_AMP_GT_GT] = ACTIONS(4062), + [anon_sym_LT_AMP] = ACTIONS(4062), + [anon_sym_GT_AMP] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4062), + }, + [1706] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1707] = { + [sym_file_descriptor] = ACTIONS(4068), + [sym__concat] = ACTIONS(4068), + [sym_variable_name] = ACTIONS(4068), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_GT_GT] = ACTIONS(4068), + [anon_sym_AMP_GT] = ACTIONS(4070), + [anon_sym_AMP_GT_GT] = ACTIONS(4068), + [anon_sym_LT_AMP] = ACTIONS(4068), + [anon_sym_GT_AMP] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4068), + }, + [1708] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4786), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1709] = { + [sym_file_descriptor] = ACTIONS(4074), + [sym__concat] = ACTIONS(4074), + [sym_variable_name] = ACTIONS(4074), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_AMP_GT] = ACTIONS(4076), + [anon_sym_AMP_GT_GT] = ACTIONS(4074), + [anon_sym_LT_AMP] = ACTIONS(4074), + [anon_sym_GT_AMP] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4074), + }, + [1710] = { + [sym_file_descriptor] = ACTIONS(4098), + [sym__concat] = ACTIONS(4098), + [sym_variable_name] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_GT_GT] = ACTIONS(4098), + [anon_sym_AMP_GT] = ACTIONS(4100), + [anon_sym_AMP_GT_GT] = ACTIONS(4098), + [anon_sym_LT_AMP] = ACTIONS(4098), + [anon_sym_GT_AMP] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4098), + }, + [1711] = { + [sym__concat] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym__string_content] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3905), + [anon_sym_BQUOTE] = ACTIONS(3905), + [sym_comment] = ACTIONS(243), + }, + [1712] = { + [sym__concat] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3913), + [anon_sym_DOLLAR] = ACTIONS(3913), + [sym__string_content] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3913), + [anon_sym_BQUOTE] = ACTIONS(3913), + [sym_comment] = ACTIONS(243), + }, + [1713] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4788), + [sym_comment] = ACTIONS(53), + }, + [1714] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4790), + [sym_comment] = ACTIONS(53), + }, + [1715] = { + [anon_sym_RBRACE] = ACTIONS(4790), + [sym_comment] = ACTIONS(53), + }, + [1716] = { + [sym_concatenation] = STATE(2096), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2096), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4794), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4794), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_COLON_DASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1717] = { + [sym__concat] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym__string_content] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3977), + [anon_sym_BQUOTE] = ACTIONS(3977), + [sym_comment] = ACTIONS(243), + }, + [1718] = { + [sym_concatenation] = STATE(2098), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2098), + [anon_sym_RBRACE] = ACTIONS(4798), + [anon_sym_EQ] = ACTIONS(4800), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4800), + [anon_sym_COLON_QMARK] = ACTIONS(4800), + [anon_sym_COLON_DASH] = ACTIONS(4800), + [anon_sym_PERCENT] = ACTIONS(4800), + [anon_sym_DASH] = ACTIONS(4800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1719] = { + [sym__concat] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3987), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym__string_content] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3987), + [anon_sym_BQUOTE] = ACTIONS(3987), + [sym_comment] = ACTIONS(243), + }, + [1720] = { + [sym_concatenation] = STATE(2100), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2100), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4806), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4806), + [anon_sym_COLON_QMARK] = ACTIONS(4806), + [anon_sym_COLON_DASH] = ACTIONS(4806), + [anon_sym_PERCENT] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4806), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1721] = { + [sym__concat] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4042), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym__string_content] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4042), + [anon_sym_BQUOTE] = ACTIONS(4042), + [sym_comment] = ACTIONS(243), + }, + [1722] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4810), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1723] = { + [sym__concat] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym__string_content] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [sym_comment] = ACTIONS(243), + }, + [1724] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1725] = { + [sym__concat] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym__string_content] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [sym_comment] = ACTIONS(243), + }, + [1726] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1727] = { + [sym__concat] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4076), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym__string_content] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4076), + [anon_sym_BQUOTE] = ACTIONS(4076), + [sym_comment] = ACTIONS(243), + }, + [1728] = { + [sym__concat] = ACTIONS(4816), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(4818), + [sym__special_characters] = ACTIONS(4818), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_DOLLAR] = ACTIONS(4818), + [sym_raw_string] = ACTIONS(3139), + [anon_sym_POUND] = ACTIONS(3139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3139), + [anon_sym_COLON] = ACTIONS(4818), + [anon_sym_COLON_QMARK] = ACTIONS(4818), + [anon_sym_COLON_DASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3139), + [anon_sym_BQUOTE] = ACTIONS(3139), + [anon_sym_LT_LPAREN] = ACTIONS(3139), + [anon_sym_GT_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4818), + }, + [1729] = { + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(4818), + [sym__special_characters] = ACTIONS(4818), + [anon_sym_DQUOTE] = ACTIONS(3139), + [anon_sym_DOLLAR] = ACTIONS(4818), + [sym_raw_string] = ACTIONS(3139), + [anon_sym_POUND] = ACTIONS(3139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3139), + [anon_sym_COLON] = ACTIONS(4818), + [anon_sym_COLON_QMARK] = ACTIONS(4818), + [anon_sym_COLON_DASH] = ACTIONS(4818), + [anon_sym_PERCENT] = ACTIONS(4818), + [anon_sym_DASH] = ACTIONS(4818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3139), + [anon_sym_BQUOTE] = ACTIONS(3139), + [anon_sym_LT_LPAREN] = ACTIONS(3139), + [anon_sym_GT_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4818), + }, + [1730] = { + [sym__concat] = ACTIONS(4820), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(4822), + [sym__special_characters] = ACTIONS(4822), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_DOLLAR] = ACTIONS(4822), + [sym_raw_string] = ACTIONS(3143), + [anon_sym_POUND] = ACTIONS(3143), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3143), + [anon_sym_SLASH] = ACTIONS(3143), + [anon_sym_COLON] = ACTIONS(4822), + [anon_sym_COLON_QMARK] = ACTIONS(4822), + [anon_sym_COLON_DASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3143), + [anon_sym_BQUOTE] = ACTIONS(3143), + [anon_sym_LT_LPAREN] = ACTIONS(3143), + [anon_sym_GT_LPAREN] = ACTIONS(3143), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4822), + }, + [1731] = { + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(4822), + [sym__special_characters] = ACTIONS(4822), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_DOLLAR] = ACTIONS(4822), + [sym_raw_string] = ACTIONS(3143), + [anon_sym_POUND] = ACTIONS(3143), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3143), + [anon_sym_SLASH] = ACTIONS(3143), + [anon_sym_COLON] = ACTIONS(4822), + [anon_sym_COLON_QMARK] = ACTIONS(4822), + [anon_sym_COLON_DASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3143), + [anon_sym_BQUOTE] = ACTIONS(3143), + [anon_sym_LT_LPAREN] = ACTIONS(3143), + [anon_sym_GT_LPAREN] = ACTIONS(3143), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4822), + }, + [1732] = { + [sym__concat] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + }, + [1733] = { + [aux_sym_concatenation_repeat1] = STATE(1733), + [sym__concat] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + }, + [1734] = { + [sym__concat] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + }, + [1735] = { + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [1736] = { + [sym_concatenation] = STATE(2110), + [sym_string] = STATE(2109), + [sym_simple_expansion] = STATE(2109), + [sym_string_expansion] = STATE(2109), + [sym_expansion] = STATE(2109), + [sym_command_substitution] = STATE(2109), + [sym_process_substitution] = STATE(2109), + [anon_sym_RBRACE] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4831), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4833), + }, + [1737] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(4835), + [sym_comment] = ACTIONS(53), + }, + [1738] = { + [sym_concatenation] = STATE(2114), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2114), + [anon_sym_RBRACE] = ACTIONS(4837), + [anon_sym_EQ] = ACTIONS(4839), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4843), + [anon_sym_COLON] = ACTIONS(4839), + [anon_sym_COLON_QMARK] = ACTIONS(4839), + [anon_sym_COLON_DASH] = ACTIONS(4839), + [anon_sym_PERCENT] = ACTIONS(4839), + [anon_sym_DASH] = ACTIONS(4839), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1739] = { + [sym_concatenation] = STATE(2117), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2117), + [anon_sym_RBRACE] = ACTIONS(4845), + [anon_sym_EQ] = ACTIONS(4847), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4851), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1740] = { + [sym_concatenation] = STATE(2119), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2119), + [anon_sym_RBRACE] = ACTIONS(4829), + [anon_sym_EQ] = ACTIONS(4853), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(4857), + [anon_sym_COLON] = ACTIONS(4853), + [anon_sym_COLON_QMARK] = ACTIONS(4853), + [anon_sym_COLON_DASH] = ACTIONS(4853), + [anon_sym_PERCENT] = ACTIONS(4853), + [anon_sym_DASH] = ACTIONS(4853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1741] = { + [sym__concat] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + }, + [1742] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4859), + }, + [1743] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1744] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + }, + [1745] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4863), + }, + [1746] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1747] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + }, + [1748] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4867), + }, + [1749] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4829), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1750] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [sym_comment] = ACTIONS(53), + }, + [1751] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4869), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1752] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4869), + [anon_sym_SEMI_SEMI] = ACTIONS(4871), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4871), + [anon_sym_AMP] = ACTIONS(4873), + }, + [1753] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4869), + [anon_sym_SEMI_SEMI] = ACTIONS(4871), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4871), + [anon_sym_AMP] = ACTIONS(4873), + }, + [1754] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(4869), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1755] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4875), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(4869), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4877), + [anon_sym_LF] = ACTIONS(4875), + [anon_sym_AMP] = ACTIONS(4877), + }, + [1756] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(4875), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(4869), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4877), + [anon_sym_LF] = ACTIONS(4875), + [anon_sym_AMP] = ACTIONS(4877), + }, + [1757] = { + [sym__concat] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + }, + [1758] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1759] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4881), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4883), + [anon_sym_LF] = ACTIONS(4881), + [anon_sym_AMP] = ACTIONS(4883), + }, + [1760] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_SEMI_SEMI] = ACTIONS(4881), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(4883), + [anon_sym_LF] = ACTIONS(4881), + [anon_sym_AMP] = ACTIONS(4883), + }, + [1761] = { + [sym__simple_heredoc_body] = ACTIONS(4885), + [sym__heredoc_body_beginning] = ACTIONS(4885), + [sym_file_descriptor] = ACTIONS(4885), + [sym__concat] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_EQ_TILDE] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4887), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [anon_sym_LT_LT] = ACTIONS(4887), + [anon_sym_LT_LT_DASH] = ACTIONS(4885), + [anon_sym_LT_LT_LT] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), + }, + [1762] = { + [sym__simple_heredoc_body] = ACTIONS(4889), + [sym__heredoc_body_beginning] = ACTIONS(4889), + [sym_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4891), + [anon_sym_EQ_EQ] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_LT_LT_DASH] = ACTIONS(4889), + [anon_sym_LT_LT_LT] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), + }, + [1763] = { + [sym__simple_heredoc_body] = ACTIONS(4893), + [sym__heredoc_body_beginning] = ACTIONS(4893), + [sym_file_descriptor] = ACTIONS(4893), + [sym__concat] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4893), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [anon_sym_EQ_TILDE] = ACTIONS(4895), + [anon_sym_EQ_EQ] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_AMP_GT] = ACTIONS(4895), + [anon_sym_AMP_GT_GT] = ACTIONS(4893), + [anon_sym_LT_AMP] = ACTIONS(4893), + [anon_sym_GT_AMP] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4895), + [anon_sym_LT_LT_DASH] = ACTIONS(4893), + [anon_sym_LT_LT_LT] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), + }, + [1764] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4897), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1765] = { + [sym__simple_heredoc_body] = ACTIONS(4899), + [sym__heredoc_body_beginning] = ACTIONS(4899), + [sym_file_descriptor] = ACTIONS(4899), + [sym__concat] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [anon_sym_EQ_TILDE] = ACTIONS(4901), + [anon_sym_EQ_EQ] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_GT_GT] = ACTIONS(4899), + [anon_sym_AMP_GT] = ACTIONS(4901), + [anon_sym_AMP_GT_GT] = ACTIONS(4899), + [anon_sym_LT_AMP] = ACTIONS(4899), + [anon_sym_GT_AMP] = ACTIONS(4899), + [anon_sym_LT_LT] = ACTIONS(4901), + [anon_sym_LT_LT_DASH] = ACTIONS(4899), + [anon_sym_LT_LT_LT] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4901), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), + }, + [1766] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1767] = { + [sym__simple_heredoc_body] = ACTIONS(4905), + [sym__heredoc_body_beginning] = ACTIONS(4905), + [sym_file_descriptor] = ACTIONS(4905), + [sym__concat] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4905), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [anon_sym_EQ_TILDE] = ACTIONS(4907), + [anon_sym_EQ_EQ] = ACTIONS(4907), + [anon_sym_LT] = ACTIONS(4907), + [anon_sym_GT] = ACTIONS(4907), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_AMP_GT] = ACTIONS(4907), + [anon_sym_AMP_GT_GT] = ACTIONS(4905), + [anon_sym_LT_AMP] = ACTIONS(4905), + [anon_sym_GT_AMP] = ACTIONS(4905), + [anon_sym_LT_LT] = ACTIONS(4907), + [anon_sym_LT_LT_DASH] = ACTIONS(4905), + [anon_sym_LT_LT_LT] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4907), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), + }, + [1768] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4909), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1769] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2857), + [sym__special_characters] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_POUND] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_COLON] = ACTIONS(2857), + [anon_sym_COLON_QMARK] = ACTIONS(2857), + [anon_sym_COLON_DASH] = ACTIONS(2857), + [anon_sym_PERCENT] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(2857), + }, + [1770] = { + [sym__concat] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2871), + [sym__special_characters] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_POUND] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_COLON] = ACTIONS(2871), + [anon_sym_COLON_QMARK] = ACTIONS(2871), + [anon_sym_COLON_DASH] = ACTIONS(2871), + [anon_sym_PERCENT] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(2871), + }, + [1771] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4911), + [sym_comment] = ACTIONS(53), + }, + [1772] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4913), + [sym_comment] = ACTIONS(53), + }, + [1773] = { + [anon_sym_RBRACE] = ACTIONS(4913), + [sym_comment] = ACTIONS(53), + }, + [1774] = { + [sym_concatenation] = STATE(2137), + [sym_string] = STATE(2136), + [sym_simple_expansion] = STATE(2136), + [sym_string_expansion] = STATE(2136), + [sym_expansion] = STATE(2136), + [sym_command_substitution] = STATE(2136), + [sym_process_substitution] = STATE(2136), + [anon_sym_RBRACE] = ACTIONS(4913), + [sym__special_characters] = ACTIONS(4915), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4917), + }, + [1775] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2905), + [anon_sym_EQ] = ACTIONS(2907), + [sym__special_characters] = ACTIONS(2907), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_POUND] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_COLON] = ACTIONS(2907), + [anon_sym_COLON_QMARK] = ACTIONS(2907), + [anon_sym_COLON_DASH] = ACTIONS(2907), + [anon_sym_PERCENT] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(2907), + }, + [1776] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4919), + }, + [1777] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4921), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1778] = { + [sym__concat] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_EQ] = ACTIONS(2915), + [sym__special_characters] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_POUND] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_COLON] = ACTIONS(2915), + [anon_sym_COLON_QMARK] = ACTIONS(2915), + [anon_sym_COLON_DASH] = ACTIONS(2915), + [anon_sym_PERCENT] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(2915), + }, + [1779] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4923), + }, + [1780] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1781] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4927), + }, + [1782] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4913), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1783] = { + [sym_concatenation] = STATE(2144), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2144), + [anon_sym_RBRACE] = ACTIONS(4929), + [anon_sym_EQ] = ACTIONS(4931), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4931), + [anon_sym_COLON_QMARK] = ACTIONS(4931), + [anon_sym_COLON_DASH] = ACTIONS(4931), + [anon_sym_PERCENT] = ACTIONS(4931), + [anon_sym_DASH] = ACTIONS(4931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1784] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_EQ] = ACTIONS(2987), + [sym__special_characters] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_COLON] = ACTIONS(2987), + [anon_sym_COLON_QMARK] = ACTIONS(2987), + [anon_sym_COLON_DASH] = ACTIONS(2987), + [anon_sym_PERCENT] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(2987), + }, + [1785] = { + [sym_concatenation] = STATE(2146), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2146), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_EQ] = ACTIONS(4937), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4937), + [anon_sym_COLON_QMARK] = ACTIONS(4937), + [anon_sym_COLON_DASH] = ACTIONS(4937), + [anon_sym_PERCENT] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(4937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1786] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_EQ] = ACTIONS(3032), + [sym__special_characters] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_POUND] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_DASH] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(3032), + }, + [1787] = { + [sym_concatenation] = STATE(2148), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2148), + [anon_sym_RBRACE] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4943), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(4945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(4943), + [anon_sym_COLON_QMARK] = ACTIONS(4943), + [anon_sym_COLON_DASH] = ACTIONS(4943), + [anon_sym_PERCENT] = ACTIONS(4943), + [anon_sym_DASH] = ACTIONS(4943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1788] = { + [sym__simple_heredoc_body] = ACTIONS(4947), + [sym__heredoc_body_beginning] = ACTIONS(4947), + [sym_file_descriptor] = ACTIONS(4947), + [sym__concat] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4947), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_EQ_TILDE] = ACTIONS(4949), + [anon_sym_EQ_EQ] = ACTIONS(4949), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_AMP_GT] = ACTIONS(4949), + [anon_sym_AMP_GT_GT] = ACTIONS(4947), + [anon_sym_LT_AMP] = ACTIONS(4947), + [anon_sym_GT_AMP] = ACTIONS(4947), + [anon_sym_LT_LT] = ACTIONS(4949), + [anon_sym_LT_LT_DASH] = ACTIONS(4947), + [anon_sym_LT_LT_LT] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), + }, + [1789] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_RBRACE] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(3042), + [sym__special_characters] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_POUND] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_COLON_QMARK] = ACTIONS(3042), + [anon_sym_COLON_DASH] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(3042), + }, + [1790] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4951), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1791] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(4951), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1792] = { + [sym__concat] = ACTIONS(3078), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [sym__special_characters] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_POUND] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_COLON] = ACTIONS(3080), + [anon_sym_COLON_QMARK] = ACTIONS(3080), + [anon_sym_COLON_DASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(3080), + }, + [1793] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1794] = { + [sym__simple_heredoc_body] = ACTIONS(4955), + [sym__heredoc_body_beginning] = ACTIONS(4955), + [sym_file_descriptor] = ACTIONS(4955), + [sym__concat] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4955), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_EQ_TILDE] = ACTIONS(4957), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_AMP_GT] = ACTIONS(4957), + [anon_sym_AMP_GT_GT] = ACTIONS(4955), + [anon_sym_LT_AMP] = ACTIONS(4955), + [anon_sym_GT_AMP] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_LT_LT_DASH] = ACTIONS(4955), + [anon_sym_LT_LT_LT] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), + }, + [1795] = { + [sym__simple_heredoc_body] = ACTIONS(4959), + [sym__heredoc_body_beginning] = ACTIONS(4959), + [sym_file_descriptor] = ACTIONS(4959), + [sym__concat] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4959), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_EQ_TILDE] = ACTIONS(4961), + [anon_sym_EQ_EQ] = ACTIONS(4961), + [anon_sym_LT] = ACTIONS(4961), + [anon_sym_GT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_AMP_GT] = ACTIONS(4961), + [anon_sym_AMP_GT_GT] = ACTIONS(4959), + [anon_sym_LT_AMP] = ACTIONS(4959), + [anon_sym_GT_AMP] = ACTIONS(4959), + [anon_sym_LT_LT] = ACTIONS(4961), + [anon_sym_LT_LT_DASH] = ACTIONS(4959), + [anon_sym_LT_LT_LT] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), + }, + [1796] = { + [sym_file_redirect] = STATE(1577), + [sym_file_descriptor] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3565), + [anon_sym_SEMI_SEMI] = ACTIONS(3567), + [anon_sym_PIPE_AMP] = ACTIONS(3567), + [anon_sym_AMP_AMP] = ACTIONS(3567), + [anon_sym_PIPE_PIPE] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_GT] = ACTIONS(3050), + [anon_sym_AMP_GT_GT] = ACTIONS(3052), + [anon_sym_LT_AMP] = ACTIONS(3052), + [anon_sym_GT_AMP] = ACTIONS(3052), + [anon_sym_BQUOTE] = ACTIONS(3567), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3565), + [anon_sym_LF] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + }, + [1797] = { + [sym_concatenation] = STATE(1580), + [sym_string] = STATE(2152), + [sym_simple_expansion] = STATE(2152), + [sym_string_expansion] = STATE(2152), + [sym_expansion] = STATE(2152), + [sym_command_substitution] = STATE(2152), + [sym_process_substitution] = STATE(2152), + [sym__special_characters] = ACTIONS(4963), + [anon_sym_DQUOTE] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym_raw_string] = ACTIONS(4965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_LT_LPAREN] = ACTIONS(203), + [anon_sym_GT_LPAREN] = ACTIONS(203), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4965), + }, + [1798] = { + [aux_sym_concatenation_repeat1] = STATE(2153), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [1799] = { + [aux_sym_concatenation_repeat1] = STATE(2153), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_BQUOTE] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [1800] = { + [sym_concatenation] = STATE(1615), + [sym_string] = STATE(2155), + [sym_simple_expansion] = STATE(2155), + [sym_string_expansion] = STATE(2155), + [sym_expansion] = STATE(2155), + [sym_command_substitution] = STATE(2155), + [sym_process_substitution] = STATE(2155), + [sym__special_characters] = ACTIONS(4967), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(4969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4969), + }, + [1801] = { + [aux_sym_concatenation_repeat1] = STATE(2156), + [sym_file_descriptor] = ACTIONS(661), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_AMP_GT] = ACTIONS(665), + [anon_sym_AMP_GT_GT] = ACTIONS(661), + [anon_sym_LT_AMP] = ACTIONS(661), + [anon_sym_GT_AMP] = ACTIONS(661), + [anon_sym_LT_LT] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(661), + [anon_sym_LT_LT_LT] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [1802] = { + [aux_sym_concatenation_repeat1] = STATE(2156), + [sym_file_descriptor] = ACTIONS(679), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_LT_LT_DASH] = ACTIONS(679), + [anon_sym_LT_LT_LT] = ACTIONS(679), + [anon_sym_BQUOTE] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [1803] = { + [aux_sym_concatenation_repeat1] = STATE(2156), + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1936), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1936), + [anon_sym_LT_AMP] = ACTIONS(1936), + [anon_sym_GT_AMP] = ACTIONS(1936), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1936), + [anon_sym_LT_LT_LT] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [1804] = { + [aux_sym_concatenation_repeat1] = STATE(2156), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), + }, + [1805] = { + [sym_file_redirect] = STATE(1805), + [sym_heredoc_redirect] = STATE(1805), + [sym_herestring_redirect] = STATE(1805), + [aux_sym_while_statement_repeat1] = STATE(1805), + [sym_file_descriptor] = ACTIONS(4971), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), + [anon_sym_PIPE_AMP] = ACTIONS(1948), + [anon_sym_AMP_AMP] = ACTIONS(1948), + [anon_sym_PIPE_PIPE] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(4974), + [anon_sym_GT] = ACTIONS(4974), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_AMP_GT] = ACTIONS(4974), + [anon_sym_AMP_GT_GT] = ACTIONS(4977), + [anon_sym_LT_AMP] = ACTIONS(4977), + [anon_sym_GT_AMP] = ACTIONS(4977), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_LT_LT_DASH] = ACTIONS(3683), + [anon_sym_LT_LT_LT] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(1948), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1953), + }, + [1806] = { + [aux_sym_concatenation_repeat1] = STATE(1806), + [sym__simple_heredoc_body] = ACTIONS(1664), + [sym__heredoc_body_beginning] = ACTIONS(1664), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [1807] = { + [sym__heredoc_body_middle] = ACTIONS(2869), + [sym__heredoc_body_end] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + }, + [1808] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4983), + [sym_comment] = ACTIONS(53), + }, + [1809] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(4985), + [sym_comment] = ACTIONS(53), + }, + [1810] = { + [anon_sym_RBRACE] = ACTIONS(4985), + [sym_comment] = ACTIONS(53), + }, + [1811] = { + [sym_concatenation] = STATE(2161), + [sym_string] = STATE(2160), + [sym_simple_expansion] = STATE(2160), + [sym_string_expansion] = STATE(2160), + [sym_expansion] = STATE(2160), + [sym_command_substitution] = STATE(2160), + [sym_process_substitution] = STATE(2160), + [anon_sym_RBRACE] = ACTIONS(4985), + [sym__special_characters] = ACTIONS(4987), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(4989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4989), + }, + [1812] = { + [sym__heredoc_body_middle] = ACTIONS(2905), + [sym__heredoc_body_end] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + }, + [1813] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4991), + }, + [1814] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1815] = { + [sym__heredoc_body_middle] = ACTIONS(2913), + [sym__heredoc_body_end] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + }, + [1816] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4995), + }, + [1817] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1818] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(4999), + }, + [1819] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1820] = { + [sym_concatenation] = STATE(2168), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2168), + [anon_sym_RBRACE] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5003), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_COLON_QMARK] = ACTIONS(5003), + [anon_sym_COLON_DASH] = ACTIONS(5003), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1821] = { + [sym__heredoc_body_middle] = ACTIONS(2985), + [sym__heredoc_body_end] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + }, + [1822] = { + [sym_concatenation] = STATE(2170), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2170), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_EQ] = ACTIONS(5009), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1823] = { + [sym__heredoc_body_middle] = ACTIONS(3030), + [sym__heredoc_body_end] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + }, + [1824] = { + [sym_concatenation] = STATE(2172), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2172), + [anon_sym_RBRACE] = ACTIONS(5013), + [anon_sym_EQ] = ACTIONS(5015), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1825] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_RPAREN] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2855), + }, + [1826] = { + [sym__concat] = ACTIONS(2869), + [anon_sym_RPAREN] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2869), + }, + [1827] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5019), + [sym_comment] = ACTIONS(53), + }, + [1828] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5021), + [sym_comment] = ACTIONS(53), + }, + [1829] = { + [anon_sym_RBRACE] = ACTIONS(5021), + [sym_comment] = ACTIONS(53), + }, + [1830] = { + [sym_concatenation] = STATE(2177), + [sym_string] = STATE(2176), + [sym_simple_expansion] = STATE(2176), + [sym_string_expansion] = STATE(2176), + [sym_expansion] = STATE(2176), + [sym_command_substitution] = STATE(2176), + [sym_process_substitution] = STATE(2176), + [anon_sym_RBRACE] = ACTIONS(5021), + [sym__special_characters] = ACTIONS(5023), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5025), + }, + [1831] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2905), + }, + [1832] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5027), + }, + [1833] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1834] = { + [sym__concat] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2913), + }, + [1835] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5031), + }, + [1836] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5033), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1837] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5035), + }, + [1838] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5021), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1839] = { + [sym_concatenation] = STATE(2184), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2184), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_EQ] = ACTIONS(5039), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5039), + [anon_sym_COLON_QMARK] = ACTIONS(5039), + [anon_sym_COLON_DASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1840] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_RPAREN] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2985), + }, + [1841] = { + [sym_concatenation] = STATE(2186), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2186), + [anon_sym_RBRACE] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5045), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5045), + [anon_sym_COLON_QMARK] = ACTIONS(5045), + [anon_sym_COLON_DASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1842] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_RPAREN] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3030), + }, + [1843] = { + [sym_concatenation] = STATE(2188), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2188), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_EQ] = ACTIONS(5051), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5051), + [anon_sym_COLON_QMARK] = ACTIONS(5051), + [anon_sym_COLON_DASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1844] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_RPAREN] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3040), + }, + [1845] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5055), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1846] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(5055), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1847] = { + [sym__concat] = ACTIONS(3078), + [anon_sym_RPAREN] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3078), + }, + [1848] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5057), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1849] = { + [sym_file_descriptor] = ACTIONS(3903), + [sym__concat] = ACTIONS(3903), + [sym_variable_name] = ACTIONS(3903), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3903), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_GT_GT] = ACTIONS(3903), + [anon_sym_AMP_GT] = ACTIONS(3905), + [anon_sym_AMP_GT_GT] = ACTIONS(3903), + [anon_sym_LT_AMP] = ACTIONS(3903), + [anon_sym_GT_AMP] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + }, + [1850] = { + [sym_file_descriptor] = ACTIONS(3911), + [sym__concat] = ACTIONS(3911), + [sym_variable_name] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_AMP_GT] = ACTIONS(3913), + [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(3913), + [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(53), + [sym_word] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [1851] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5059), + [sym_comment] = ACTIONS(53), + }, + [1852] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5061), + [sym_comment] = ACTIONS(53), + }, + [1853] = { + [anon_sym_RBRACE] = ACTIONS(5061), + [sym_comment] = ACTIONS(53), + }, + [1854] = { + [sym_concatenation] = STATE(2194), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2194), + [anon_sym_RBRACE] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5065), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1855] = { + [sym_file_descriptor] = ACTIONS(3975), + [sym__concat] = ACTIONS(3975), + [sym_variable_name] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3975), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_GT] = ACTIONS(3975), + [anon_sym_AMP_GT] = ACTIONS(3977), + [anon_sym_AMP_GT_GT] = ACTIONS(3975), + [anon_sym_LT_AMP] = ACTIONS(3975), + [anon_sym_GT_AMP] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), + }, + [1856] = { + [sym_concatenation] = STATE(2196), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2196), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_EQ] = ACTIONS(5071), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1857] = { + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [sym_variable_name] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3987), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [1858] = { + [sym_concatenation] = STATE(2198), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2198), + [anon_sym_RBRACE] = ACTIONS(5075), + [anon_sym_EQ] = ACTIONS(5077), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1859] = { + [sym_file_descriptor] = ACTIONS(4040), + [sym__concat] = ACTIONS(4040), + [sym_variable_name] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_GT_GT] = ACTIONS(4040), + [anon_sym_AMP_GT] = ACTIONS(4042), + [anon_sym_AMP_GT_GT] = ACTIONS(4040), + [anon_sym_LT_AMP] = ACTIONS(4040), + [anon_sym_GT_AMP] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), + }, + [1860] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5081), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1861] = { + [sym_file_descriptor] = ACTIONS(4062), + [sym__concat] = ACTIONS(4062), + [sym_variable_name] = ACTIONS(4062), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4062), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4064), + [anon_sym_GT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_AMP_GT] = ACTIONS(4064), + [anon_sym_AMP_GT_GT] = ACTIONS(4062), + [anon_sym_LT_AMP] = ACTIONS(4062), + [anon_sym_GT_AMP] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), + }, + [1862] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1863] = { + [sym_file_descriptor] = ACTIONS(4068), + [sym__concat] = ACTIONS(4068), + [sym_variable_name] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4068), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_GT_GT] = ACTIONS(4068), + [anon_sym_AMP_GT] = ACTIONS(4070), + [anon_sym_AMP_GT_GT] = ACTIONS(4068), + [anon_sym_LT_AMP] = ACTIONS(4068), + [anon_sym_GT_AMP] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), + }, + [1864] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1865] = { + [sym_file_descriptor] = ACTIONS(4074), + [sym__concat] = ACTIONS(4074), + [sym_variable_name] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_AMP_GT] = ACTIONS(4076), + [anon_sym_AMP_GT_GT] = ACTIONS(4074), + [anon_sym_LT_AMP] = ACTIONS(4074), + [anon_sym_GT_AMP] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), + }, + [1866] = { + [sym_file_descriptor] = ACTIONS(4098), + [sym__concat] = ACTIONS(4098), + [sym_variable_name] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_GT_GT] = ACTIONS(4098), + [anon_sym_AMP_GT] = ACTIONS(4100), + [anon_sym_AMP_GT_GT] = ACTIONS(4098), + [anon_sym_LT_AMP] = ACTIONS(4098), + [anon_sym_GT_AMP] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), + }, + [1867] = { + [anon_sym_esac] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_SEMI_SEMI] = ACTIONS(2355), + [anon_sym_PIPE_AMP] = ACTIONS(2355), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_PIPE_PIPE] = ACTIONS(2355), + [anon_sym_BQUOTE] = ACTIONS(2355), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_LF] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2357), + }, [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(5022), - [anon_sym_LF] = ACTIONS(5024), - [anon_sym_AMP] = ACTIONS(5022), + [sym__terminated_statement] = STATE(1110), + [sym_for_statement] = STATE(619), + [sym_c_style_for_statement] = STATE(619), + [sym_while_statement] = STATE(619), + [sym_if_statement] = STATE(619), + [sym_case_statement] = STATE(619), + [sym_function_definition] = STATE(619), + [sym_subshell] = STATE(619), + [sym_pipeline] = STATE(619), + [sym_list] = STATE(619), + [sym_negated_command] = STATE(619), + [sym_test_command] = STATE(619), + [sym_declaration_command] = STATE(619), + [sym_unset_command] = STATE(619), + [sym_command] = STATE(619), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(620), + [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(1110), + [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(5087), + [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), }, [1869] = { - [aux_sym_concatenation_repeat1] = STATE(1492), - [sym__concat] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(5026), - [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_EQ_TILDE] = ACTIONS(2454), + [anon_sym_EQ_EQ] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2454), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2454), }, [1870] = { - [aux_sym_concatenation_repeat1] = STATE(1492), - [sym__concat] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(5028), - [anon_sym_RPAREN] = ACTIONS(5028), + [sym__concat] = ACTIONS(1664), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1664), + [anon_sym_EQ_EQ] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG_EQ] = ACTIONS(1664), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1664), }, [1871] = { - [anon_sym_PIPE] = ACTIONS(5028), - [anon_sym_RPAREN] = ACTIONS(5028), + [aux_sym_concatenation_repeat1] = STATE(1871), + [sym__concat] = ACTIONS(5089), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1664), + [anon_sym_EQ_EQ] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG_EQ] = ACTIONS(1664), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1664), }, [1872] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(5030), - [anon_sym_PLUS_EQ] = ACTIONS(5030), + [sym__concat] = ACTIONS(1671), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1671), }, [1873] = { - [sym__terminated_statement] = STATE(2155), + [anon_sym_DQUOTE] = ACTIONS(5092), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [1874] = { + [sym_concatenation] = STATE(2207), + [sym_string] = STATE(2206), + [sym_simple_expansion] = STATE(2206), + [sym_string_expansion] = STATE(2206), + [sym_expansion] = STATE(2206), + [sym_command_substitution] = STATE(2206), + [sym_process_substitution] = STATE(2206), + [anon_sym_RBRACE] = ACTIONS(5094), + [sym__special_characters] = ACTIONS(5096), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5098), + }, + [1875] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(5100), + [sym_comment] = ACTIONS(53), + }, + [1876] = { + [sym_concatenation] = STATE(2211), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2211), + [anon_sym_RBRACE] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5104), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5104), + [anon_sym_COLON_QMARK] = ACTIONS(5104), + [anon_sym_COLON_DASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1877] = { + [sym_concatenation] = STATE(2214), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2214), + [anon_sym_RBRACE] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(5112), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_COLON_QMARK] = ACTIONS(5112), + [anon_sym_COLON_DASH] = ACTIONS(5112), + [anon_sym_PERCENT] = ACTIONS(5112), + [anon_sym_DASH] = ACTIONS(5112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1878] = { + [sym_concatenation] = STATE(2216), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2216), + [anon_sym_RBRACE] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(5118), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_COLON] = ACTIONS(5118), + [anon_sym_COLON_QMARK] = ACTIONS(5118), + [anon_sym_COLON_DASH] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1879] = { + [sym__concat] = ACTIONS(1788), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [anon_sym_EQ_TILDE] = ACTIONS(1788), + [anon_sym_EQ_EQ] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1788), + [anon_sym_GT] = ACTIONS(1788), + [anon_sym_BANG_EQ] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1788), + }, + [1880] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5124), + }, + [1881] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1882] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_RPAREN_RPAREN] = 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(1834), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_BANG_EQ] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1832), + }, + [1883] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5128), + }, + [1884] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5130), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1885] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_EQ_TILDE] = ACTIONS(1840), + [anon_sym_EQ_EQ] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_GT] = ACTIONS(1840), + [anon_sym_BANG_EQ] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1840), + }, + [1886] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5132), + }, + [1887] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5094), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1888] = { + [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), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1846), + }, + [1889] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1890] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_SEMI_SEMI] = ACTIONS(5136), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5138), + [anon_sym_LF] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5138), + }, + [1891] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5134), + [anon_sym_SEMI_SEMI] = ACTIONS(5136), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5138), + [anon_sym_LF] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5138), + }, + [1892] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(5134), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1893] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(5140), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(5134), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5142), + [anon_sym_LF] = ACTIONS(5140), + [anon_sym_AMP] = ACTIONS(5142), + }, + [1894] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(5140), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(5134), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5142), + [anon_sym_LF] = ACTIONS(5140), + [anon_sym_AMP] = ACTIONS(5142), + }, + [1895] = { + [sym__concat] = ACTIONS(1878), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_EQ_TILDE] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1878), + }, + [1896] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5144), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1897] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5144), + [anon_sym_SEMI_SEMI] = ACTIONS(5146), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5148), + [anon_sym_LF] = ACTIONS(5146), + [anon_sym_AMP] = ACTIONS(5148), + }, + [1898] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5144), + [anon_sym_SEMI_SEMI] = ACTIONS(5146), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5148), + [anon_sym_LF] = ACTIONS(5146), + [anon_sym_AMP] = ACTIONS(5148), + }, + [1899] = { + [anon_sym_esac] = ACTIONS(5150), + [anon_sym_PIPE] = ACTIONS(5152), + [anon_sym_RPAREN] = ACTIONS(5150), + [anon_sym_SEMI_SEMI] = ACTIONS(5150), + [anon_sym_PIPE_AMP] = ACTIONS(5150), + [anon_sym_AMP_AMP] = ACTIONS(5150), + [anon_sym_PIPE_PIPE] = ACTIONS(5150), + [anon_sym_BQUOTE] = ACTIONS(5150), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5152), + [anon_sym_LF] = ACTIONS(5150), + [anon_sym_AMP] = ACTIONS(5152), + }, + [1900] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_PIPE_PIPE] = ACTIONS(2521), + [anon_sym_EQ_TILDE] = ACTIONS(2521), + [anon_sym_EQ_EQ] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), + [anon_sym_BANG_EQ] = ACTIONS(2521), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2521), + }, + [1901] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_PIPE_PIPE] = ACTIONS(2521), + [anon_sym_EQ_TILDE] = ACTIONS(2521), + [anon_sym_EQ_EQ] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_GT] = ACTIONS(2521), + [anon_sym_BANG_EQ] = ACTIONS(2521), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2521), + }, + [1902] = { + [sym_do_group] = STATE(2227), + [sym_compound_statement] = STATE(2227), + [anon_sym_do] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(3292), + [sym_comment] = ACTIONS(53), + }, + [1903] = { + [sym__concat] = ACTIONS(3903), + [anon_sym_esac] = ACTIONS(3903), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [anon_sym_EQ_TILDE] = ACTIONS(3903), + [anon_sym_EQ_EQ] = ACTIONS(3903), + [anon_sym_EQ] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(3903), + [anon_sym_BANG_EQ] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3903), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + }, + [1904] = { + [sym__concat] = ACTIONS(3911), + [anon_sym_esac] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [1905] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5154), + [sym_comment] = ACTIONS(53), + }, + [1906] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5156), + [sym_comment] = ACTIONS(53), + }, + [1907] = { + [anon_sym_RBRACE] = ACTIONS(5156), + [sym_comment] = ACTIONS(53), + }, + [1908] = { + [sym_concatenation] = STATE(2231), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2231), + [anon_sym_RBRACE] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5160), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_COLON_QMARK] = ACTIONS(5160), + [anon_sym_COLON_DASH] = ACTIONS(5160), + [anon_sym_PERCENT] = ACTIONS(5160), + [anon_sym_DASH] = ACTIONS(5160), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1909] = { + [sym__concat] = ACTIONS(3975), + [anon_sym_esac] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_EQ_TILDE] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_EQ] = ACTIONS(3977), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_GT] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3975), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), + }, + [1910] = { + [sym_concatenation] = STATE(2233), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2233), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_EQ] = ACTIONS(5166), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5166), + [anon_sym_COLON_QMARK] = ACTIONS(5166), + [anon_sym_COLON_DASH] = ACTIONS(5166), + [anon_sym_PERCENT] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1911] = { + [sym__concat] = ACTIONS(3985), + [anon_sym_esac] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_LT] = ACTIONS(3985), + [anon_sym_GT] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [1912] = { + [sym_concatenation] = STATE(2235), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2235), + [anon_sym_RBRACE] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1913] = { + [sym__concat] = ACTIONS(4040), + [anon_sym_esac] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_EQ_TILDE] = ACTIONS(4040), + [anon_sym_EQ_EQ] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(4042), + [anon_sym_LT] = ACTIONS(4040), + [anon_sym_GT] = ACTIONS(4040), + [anon_sym_BANG_EQ] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4040), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), + }, + [1914] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5176), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1915] = { + [sym__concat] = ACTIONS(4062), + [anon_sym_esac] = ACTIONS(4062), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [anon_sym_EQ_TILDE] = ACTIONS(4062), + [anon_sym_EQ_EQ] = ACTIONS(4062), + [anon_sym_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_BANG_EQ] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), + }, + [1916] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1917] = { + [sym__concat] = ACTIONS(4068), + [anon_sym_esac] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_EQ_TILDE] = ACTIONS(4068), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_BANG_EQ] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), + }, + [1918] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1919] = { + [sym__concat] = ACTIONS(4074), + [anon_sym_esac] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_EQ_TILDE] = ACTIONS(4074), + [anon_sym_EQ_EQ] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_BANG_EQ] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), + }, + [1920] = { + [sym__concat] = ACTIONS(4098), + [anon_sym_esac] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_EQ_TILDE] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_BANG_EQ] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4098), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), + }, + [1921] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(5182), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_PIPE_PIPE] = ACTIONS(3320), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_GT] = ACTIONS(3320), + [anon_sym_BANG_EQ] = ACTIONS(3320), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3320), + }, + [1922] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2855), + }, + [1923] = { + [sym__concat] = ACTIONS(2869), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + }, + [1924] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5184), + [sym_comment] = ACTIONS(53), + }, + [1925] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5186), + [sym_comment] = ACTIONS(53), + }, + [1926] = { + [anon_sym_RBRACE] = ACTIONS(5186), + [sym_comment] = ACTIONS(53), + }, + [1927] = { + [sym_concatenation] = STATE(2244), + [sym_string] = STATE(2243), + [sym_simple_expansion] = STATE(2243), + [sym_string_expansion] = STATE(2243), + [sym_expansion] = STATE(2243), + [sym_command_substitution] = STATE(2243), + [sym_process_substitution] = STATE(2243), + [anon_sym_RBRACE] = ACTIONS(5186), + [sym__special_characters] = ACTIONS(5188), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5190), + }, + [1928] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2905), + }, + [1929] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5192), + }, + [1930] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1931] = { + [sym__concat] = ACTIONS(2913), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2913), + }, + [1932] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5196), + }, + [1933] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1934] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5200), + }, + [1935] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5186), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1936] = { + [sym_concatenation] = STATE(2251), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2251), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1937] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + }, + [1938] = { + [sym_concatenation] = STATE(2253), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2253), + [anon_sym_RBRACE] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5210), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_COLON_QMARK] = ACTIONS(5210), + [anon_sym_COLON_DASH] = ACTIONS(5210), + [anon_sym_PERCENT] = ACTIONS(5210), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1939] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + }, + [1940] = { + [sym_concatenation] = STATE(2255), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2255), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(5216), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [1941] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3040), + }, + [1942] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5220), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1943] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(5220), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1944] = { + [sym__concat] = ACTIONS(3078), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + }, + [1945] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [1946] = { + [sym__terminated_statement] = STATE(1069), + [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(1069), + [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(5224), + [anon_sym_elif] = ACTIONS(5224), + [anon_sym_else] = ACTIONS(5224), + [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), + }, + [1947] = { + [anon_sym_esac] = ACTIONS(5226), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_SEMI_SEMI] = ACTIONS(5226), + [anon_sym_PIPE_AMP] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_BQUOTE] = ACTIONS(5226), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_LF] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5228), + }, + [1948] = { + [aux_sym_concatenation_repeat1] = STATE(1547), + [sym__concat] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [sym_comment] = ACTIONS(53), + }, + [1949] = { + [aux_sym_concatenation_repeat1] = STATE(1547), + [sym__concat] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_RPAREN] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + }, + [1950] = { + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_RPAREN] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), + }, + [1951] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_PLUS_EQ] = ACTIONS(5234), + [sym_comment] = ACTIONS(53), + }, + [1952] = { + [sym__terminated_statement] = STATE(2259), [sym_for_statement] = STATE(40), [sym_c_style_for_statement] = STATE(40), [sym_while_statement] = STATE(40), @@ -52831,45 +55553,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [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), + [1953] = { + [anon_sym_esac] = ACTIONS(5236), + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5240), + [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(53), - [sym_word] = ACTIONS(5036), + [sym_word] = ACTIONS(5240), }, - [1875] = { + [1954] = { [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5038), + [sym_word] = ACTIONS(5242), }, - [1876] = { + [1955] = { [sym_subshell] = STATE(71), [sym_test_command] = STATE(71), [sym_command] = STATE(71), - [sym_command_name] = STATE(1885), + [sym_command_name] = STATE(1970), [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_concatenation] = STATE(1973), + [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), + [aux_sym_command_repeat1] = STATE(1975), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(109), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(4308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -52877,24 +55599,24 @@ 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(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__special_characters] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4318), + [sym_word] = ACTIONS(4476), }, - [1877] = { - [sym__expression] = STATE(2157), - [sym_binary_expression] = STATE(2157), - [sym_unary_expression] = STATE(2157), - [sym_parenthesized_expression] = STATE(2157), - [sym_concatenation] = STATE(2157), + [1956] = { + [sym__expression] = STATE(2261), + [sym_binary_expression] = STATE(2261), + [sym_unary_expression] = STATE(2261), + [sym_parenthesized_expression] = STATE(2261), + [sym_concatenation] = STATE(2261), [sym_string] = STATE(78), [sym_simple_expansion] = STATE(78), [sym_string_expansion] = STATE(78), @@ -52916,12 +55638,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(131), [sym_test_operator] = ACTIONS(133), }, - [1878] = { - [sym__expression] = STATE(2158), - [sym_binary_expression] = STATE(2158), - [sym_unary_expression] = STATE(2158), - [sym_parenthesized_expression] = STATE(2158), - [sym_concatenation] = STATE(2158), + [1957] = { + [sym__expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_unary_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_concatenation] = STATE(2262), [sym_string] = STATE(89), [sym_simple_expansion] = STATE(89), [sym_string_expansion] = STATE(89), @@ -52943,336 +55665,239 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(155), [sym_test_operator] = ACTIONS(157), }, - [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), + [1958] = { + [sym_variable_assignment] = STATE(2274), + [sym_subscript] = STATE(2273), + [sym_concatenation] = STATE(2274), + [sym_string] = STATE(2267), + [sym_simple_expansion] = STATE(2267), + [sym_string_expansion] = STATE(2267), + [sym_expansion] = STATE(2267), + [sym_command_substitution] = STATE(2267), + [sym_process_substitution] = STATE(2267), + [aux_sym_declaration_command_repeat1] = STATE(2274), + [sym_variable_name] = ACTIONS(5244), [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(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_SEMI] = ACTIONS(163), + [anon_sym_PIPE_AMP] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(163), + [anon_sym_PIPE_PIPE] = ACTIONS(163), + [sym__special_characters] = ACTIONS(5246), + [anon_sym_DQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR] = ACTIONS(5250), + [sym_raw_string] = ACTIONS(5252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5256), + [anon_sym_BQUOTE] = ACTIONS(5258), + [anon_sym_LT_LPAREN] = ACTIONS(5260), + [anon_sym_GT_LPAREN] = ACTIONS(5260), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5262), + [sym_word] = ACTIONS(5264), [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_LF] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(163), [anon_sym_AMP] = ACTIONS(161), }, - [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), + [1959] = { + [sym_concatenation] = STATE(2284), + [sym_string] = STATE(2278), + [sym_simple_expansion] = STATE(2278), + [sym_string_expansion] = STATE(2278), + [sym_expansion] = STATE(2278), + [sym_command_substitution] = STATE(2278), + [sym_process_substitution] = STATE(2278), + [aux_sym_unset_command_repeat1] = STATE(2284), [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(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_SEMI] = ACTIONS(187), + [anon_sym_PIPE_AMP] = ACTIONS(187), + [anon_sym_AMP_AMP] = ACTIONS(187), + [anon_sym_PIPE_PIPE] = ACTIONS(187), + [sym__special_characters] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR] = ACTIONS(5270), + [sym_raw_string] = ACTIONS(5272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5276), + [anon_sym_BQUOTE] = ACTIONS(5278), + [anon_sym_LT_LPAREN] = ACTIONS(5280), + [anon_sym_GT_LPAREN] = ACTIONS(5280), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5282), + [sym_word] = ACTIONS(5284), [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_LF] = ACTIONS(205), + [anon_sym_LF] = ACTIONS(187), [anon_sym_AMP] = ACTIONS(185), }, - [1881] = { - [aux_sym_concatenation_repeat1] = STATE(2181), - [sym__simple_heredoc_body] = ACTIONS(223), - [sym__heredoc_body_beginning] = ACTIONS(223), - [sym_file_descriptor] = ACTIONS(223), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(227), - [anon_sym_PIPE] = 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), - }, - [1882] = { - [aux_sym_concatenation_repeat1] = STATE(2181), - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(251), - [anon_sym_PIPE] = 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), - }, - [1883] = { - [aux_sym_concatenation_repeat1] = STATE(2181), - [sym__simple_heredoc_body] = ACTIONS(249), - [sym__heredoc_body_beginning] = ACTIONS(249), - [sym_file_descriptor] = ACTIONS(249), - [sym__concat] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_SEMI_SEMI] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(5078), - [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), - }, - [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(285), - [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), - }, - [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(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(297), - [anon_sym_LF] = ACTIONS(321), - [anon_sym_AMP] = ACTIONS(297), - }, - [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(325), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), - }, - [1887] = { - [anon_sym_EQ] = ACTIONS(5030), - [anon_sym_PLUS_EQ] = ACTIONS(5030), + [1960] = { + [aux_sym_concatenation_repeat1] = STATE(2286), + [sym__simple_heredoc_body] = ACTIONS(225), + [sym__heredoc_body_beginning] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(225), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_SEMI_SEMI] = ACTIONS(225), + [anon_sym_PIPE_AMP] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_EQ_TILDE] = ACTIONS(229), + [anon_sym_EQ_EQ] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_GT_GT] = ACTIONS(225), + [anon_sym_AMP_GT] = ACTIONS(229), + [anon_sym_AMP_GT_GT] = ACTIONS(225), + [anon_sym_LT_AMP] = ACTIONS(225), + [anon_sym_GT_AMP] = ACTIONS(225), + [anon_sym_LT_LT] = ACTIONS(229), + [anon_sym_LT_LT_DASH] = ACTIONS(225), + [anon_sym_LT_LT_LT] = ACTIONS(225), + [sym__special_characters] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(229), + [sym_raw_string] = ACTIONS(225), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(229), + [anon_sym_LF] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(229), }, - [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), + [1961] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(2289), + [anon_sym_DQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5290), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [1962] = { + [sym_string] = STATE(2291), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5294), + [anon_sym_POUND] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5296), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_AT] = ACTIONS(5292), + [anon_sym_QMARK] = ACTIONS(5292), + [anon_sym_0] = ACTIONS(5298), + [anon_sym__] = ACTIONS(5298), + }, + [1963] = { + [aux_sym_concatenation_repeat1] = STATE(2286), + [sym__simple_heredoc_body] = ACTIONS(253), + [sym__heredoc_body_beginning] = ACTIONS(253), + [sym_file_descriptor] = ACTIONS(253), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(255), + [anon_sym_PIPE] = ACTIONS(255), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_EQ_TILDE] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(255), + [anon_sym_GT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(255), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [anon_sym_LT_LT_LT] = ACTIONS(253), + [sym__special_characters] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym_raw_string] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(253), + [anon_sym_GT_LPAREN] = ACTIONS(253), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(255), + }, + [1964] = { + [sym_subscript] = STATE(2297), + [sym_variable_name] = ACTIONS(5300), + [anon_sym_BANG] = ACTIONS(5302), + [anon_sym_DOLLAR] = ACTIONS(5304), + [anon_sym_POUND] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5304), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5306), + [anon_sym_STAR] = ACTIONS(5304), + [anon_sym_AT] = ACTIONS(5304), + [anon_sym_QMARK] = ACTIONS(5304), + [anon_sym_0] = ACTIONS(5308), + [anon_sym__] = ACTIONS(5308), + }, + [1965] = { + [sym__terminated_statement] = STATE(2300), + [sym_for_statement] = STATE(2298), + [sym_c_style_for_statement] = STATE(2298), + [sym_while_statement] = STATE(2298), + [sym_if_statement] = STATE(2298), + [sym_case_statement] = STATE(2298), + [sym_function_definition] = STATE(2298), + [sym_subshell] = STATE(2298), + [sym_pipeline] = STATE(2298), + [sym_list] = STATE(2298), + [sym_negated_command] = STATE(2298), + [sym_test_command] = STATE(2298), + [sym_declaration_command] = STATE(2298), + [sym_unset_command] = STATE(2298), + [sym_command] = STATE(2298), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2299), + [sym_subscript] = STATE(67), [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_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(2300), + [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4296), + [sym_variable_name] = ACTIONS(87), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4298), + [anon_sym_while] = ACTIONS(89), [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_function] = ACTIONS(91), [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_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), @@ -53280,30 +55905,405 @@ 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(4316), + [sym__special_characters] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(4318), + [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(4320), + [sym_word] = ACTIONS(107), }, - [1889] = { - [sym_command_name] = STATE(2198), + [1966] = { + [sym__terminated_statement] = STATE(2303), + [sym_for_statement] = STATE(2301), + [sym_c_style_for_statement] = STATE(2301), + [sym_while_statement] = STATE(2301), + [sym_if_statement] = STATE(2301), + [sym_case_statement] = STATE(2301), + [sym_function_definition] = STATE(2301), + [sym_subshell] = STATE(2301), + [sym_pipeline] = STATE(2301), + [sym_list] = STATE(2301), + [sym_negated_command] = STATE(2301), + [sym_test_command] = STATE(2301), + [sym_declaration_command] = STATE(2301), + [sym_unset_command] = STATE(2301), + [sym_command] = STATE(2301), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2302), + [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(2303), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [1967] = { + [sym__terminated_statement] = STATE(2306), + [sym_for_statement] = STATE(2304), + [sym_c_style_for_statement] = STATE(2304), + [sym_while_statement] = STATE(2304), + [sym_if_statement] = STATE(2304), + [sym_case_statement] = STATE(2304), + [sym_function_definition] = STATE(2304), + [sym_subshell] = STATE(2304), + [sym_pipeline] = STATE(2304), + [sym_list] = STATE(2304), + [sym_negated_command] = STATE(2304), + [sym_test_command] = STATE(2304), + [sym_declaration_command] = STATE(2304), + [sym_unset_command] = STATE(2304), + [sym_command] = STATE(2304), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2305), + [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(2306), + [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), + }, + [1968] = { + [aux_sym_concatenation_repeat1] = STATE(2286), + [sym__simple_heredoc_body] = ACTIONS(253), + [sym__heredoc_body_beginning] = ACTIONS(253), + [sym_file_descriptor] = ACTIONS(253), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(255), + [anon_sym_PIPE] = ACTIONS(255), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(5310), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_EQ_TILDE] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(255), + [anon_sym_GT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(255), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [anon_sym_LT_LT_LT] = ACTIONS(253), + [sym__special_characters] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym_raw_string] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(253), + [anon_sym_GT_LPAREN] = ACTIONS(253), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(255), + }, + [1969] = { + [anon_sym_esac] = ACTIONS(5312), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [1970] = { + [sym_file_redirect] = STATE(2318), + [sym_heredoc_redirect] = STATE(2318), + [sym_heredoc_body] = STATE(175), + [sym_herestring_redirect] = STATE(2318), + [sym_concatenation] = STATE(2319), + [sym_string] = STATE(2317), + [sym_simple_expansion] = STATE(2317), + [sym_string_expansion] = STATE(2317), + [sym_expansion] = STATE(2317), + [sym_command_substitution] = STATE(2317), + [sym_process_substitution] = STATE(2317), + [aux_sym_while_statement_repeat1] = STATE(2318), + [aux_sym_command_repeat2] = STATE(2319), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_SEMI_SEMI] = ACTIONS(305), + [anon_sym_PIPE_AMP] = ACTIONS(305), + [anon_sym_AMP_AMP] = ACTIONS(305), + [anon_sym_PIPE_PIPE] = ACTIONS(305), + [anon_sym_EQ_TILDE] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_AMP_GT] = ACTIONS(5330), + [anon_sym_AMP_GT_GT] = ACTIONS(5332), + [anon_sym_LT_AMP] = ACTIONS(5332), + [anon_sym_GT_AMP] = ACTIONS(5332), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(5334), + [sym__special_characters] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(5338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5340), + [anon_sym_SEMI] = ACTIONS(303), + [anon_sym_LF] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(303), + }, + [1971] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_esac] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [1972] = { + [anon_sym_EQ] = ACTIONS(5234), + [anon_sym_PLUS_EQ] = ACTIONS(5234), + [sym_comment] = ACTIONS(53), + }, + [1973] = { + [sym__simple_heredoc_body] = ACTIONS(253), + [sym__heredoc_body_beginning] = ACTIONS(253), + [sym_file_descriptor] = ACTIONS(253), + [anon_sym_esac] = ACTIONS(255), + [anon_sym_PIPE] = ACTIONS(255), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_EQ_TILDE] = ACTIONS(255), + [anon_sym_EQ_EQ] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(255), + [anon_sym_GT] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(255), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [anon_sym_LT_LT_LT] = ACTIONS(253), + [sym__special_characters] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym_raw_string] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_LT_LPAREN] = ACTIONS(253), + [anon_sym_GT_LPAREN] = ACTIONS(253), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(255), + }, + [1974] = { + [sym__terminated_statement] = STATE(2323), + [sym_for_statement] = STATE(2321), + [sym_c_style_for_statement] = STATE(2321), + [sym_while_statement] = STATE(2321), + [sym_if_statement] = STATE(2321), + [sym_case_statement] = STATE(2321), + [sym_function_definition] = STATE(2321), + [sym_subshell] = STATE(2321), + [sym_pipeline] = STATE(2321), + [sym_list] = STATE(2321), + [sym_negated_command] = STATE(2321), + [sym_test_command] = STATE(2321), + [sym_declaration_command] = STATE(2321), + [sym_unset_command] = STATE(2321), + [sym_command] = STATE(2321), + [sym_command_name] = STATE(1970), + [sym_variable_assignment] = STATE(2322), + [sym_subscript] = STATE(1972), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(1973), + [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), + [aux_sym_program_repeat1] = STATE(2323), + [aux_sym_command_repeat1] = STATE(1975), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5236), + [anon_sym_SEMI_SEMI] = ACTIONS(5342), + [anon_sym_function] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym_declare] = ACTIONS(4466), + [anon_sym_typeset] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_readonly] = ACTIONS(4466), + [anon_sym_local] = ACTIONS(4466), + [anon_sym_unset] = ACTIONS(4468), + [anon_sym_unsetenv] = ACTIONS(4468), + [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(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4486), + }, + [1975] = { + [sym_command_name] = STATE(2324), [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), + [sym_concatenation] = STATE(1973), + [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), [aux_sym_command_repeat1] = STATE(180), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(109), @@ -53314,7677 +56314,4152 @@ 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(5100), - [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__special_characters] = ACTIONS(5344), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), [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(4720), - [anon_sym_in] = ACTIONS(4722), - [anon_sym_SEMI_SEMI] = ACTIONS(4722), - [sym__special_characters] = ACTIONS(4722), - [anon_sym_DQUOTE] = ACTIONS(4722), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym_raw_string] = ACTIONS(4722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), - [anon_sym_BQUOTE] = ACTIONS(4722), - [anon_sym_LT_LPAREN] = ACTIONS(4722), - [anon_sym_GT_LPAREN] = ACTIONS(4722), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LF] = ACTIONS(4720), - [anon_sym_AMP] = ACTIONS(4722), - }, - [1906] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_in] = ACTIONS(4726), - [anon_sym_SEMI_SEMI] = ACTIONS(4726), - [sym__special_characters] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4726), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym_raw_string] = ACTIONS(4726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), - [anon_sym_BQUOTE] = ACTIONS(4726), - [anon_sym_LT_LPAREN] = ACTIONS(4726), - [anon_sym_GT_LPAREN] = ACTIONS(4726), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_LF] = ACTIONS(4724), - [anon_sym_AMP] = ACTIONS(4726), - }, - [1907] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_SEMI_SEMI] = ACTIONS(4730), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4730), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym_raw_string] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), - [anon_sym_BQUOTE] = ACTIONS(4730), - [anon_sym_LT_LPAREN] = ACTIONS(4730), - [anon_sym_GT_LPAREN] = ACTIONS(4730), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4728), - [anon_sym_AMP] = ACTIONS(4730), - }, - [1908] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1909] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_in] = ACTIONS(4736), - [anon_sym_SEMI_SEMI] = ACTIONS(4736), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4736), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym_raw_string] = ACTIONS(4736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), - [anon_sym_BQUOTE] = ACTIONS(4736), - [anon_sym_LT_LPAREN] = ACTIONS(4736), - [anon_sym_GT_LPAREN] = ACTIONS(4736), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4734), - [anon_sym_AMP] = ACTIONS(4736), - }, - [1910] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1911] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_in] = ACTIONS(4742), - [anon_sym_SEMI_SEMI] = ACTIONS(4742), - [sym__special_characters] = ACTIONS(4742), - [anon_sym_DQUOTE] = ACTIONS(4742), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym_raw_string] = ACTIONS(4742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), - [anon_sym_BQUOTE] = ACTIONS(4742), - [anon_sym_LT_LPAREN] = ACTIONS(4742), - [anon_sym_GT_LPAREN] = ACTIONS(4742), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_LF] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), - }, - [1912] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1913] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_SEMI_SEMI] = ACTIONS(4784), - [sym__special_characters] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4784), - [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(179), - [sym_word] = ACTIONS(4784), - [anon_sym_SEMI] = ACTIONS(4784), - [anon_sym_LF] = ACTIONS(4782), - [anon_sym_AMP] = ACTIONS(4784), - }, - [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(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_RBRACK] = ACTIONS(4720), - [anon_sym_EQ_TILDE] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4720), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4720), - }, - [1924] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_AMP_AMP] = ACTIONS(4724), - [anon_sym_PIPE_PIPE] = ACTIONS(4724), - [anon_sym_RBRACK] = ACTIONS(4724), - [anon_sym_EQ_TILDE] = ACTIONS(4724), - [anon_sym_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4724), - [anon_sym_GT] = ACTIONS(4724), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4724), - }, - [1925] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_RBRACK] = ACTIONS(4728), - [anon_sym_EQ_TILDE] = ACTIONS(4728), - [anon_sym_EQ_EQ] = ACTIONS(4728), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4728), - [anon_sym_GT] = ACTIONS(4728), - [anon_sym_BANG_EQ] = ACTIONS(4728), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4728), - }, - [1926] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1927] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_AMP_AMP] = ACTIONS(4734), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [anon_sym_RBRACK] = ACTIONS(4734), - [anon_sym_EQ_TILDE] = ACTIONS(4734), - [anon_sym_EQ_EQ] = ACTIONS(4734), - [anon_sym_EQ] = ACTIONS(4736), - [anon_sym_LT] = ACTIONS(4734), - [anon_sym_GT] = ACTIONS(4734), - [anon_sym_BANG_EQ] = ACTIONS(4734), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4734), - }, - [1928] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1929] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_RBRACK] = ACTIONS(4740), - [anon_sym_EQ_TILDE] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4740), - }, - [1930] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1931] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4782), - [anon_sym_PIPE_PIPE] = ACTIONS(4782), - [anon_sym_RBRACK] = ACTIONS(4782), - [anon_sym_EQ_TILDE] = ACTIONS(4782), - [anon_sym_EQ_EQ] = ACTIONS(4782), - [anon_sym_EQ] = ACTIONS(4784), - [anon_sym_LT] = ACTIONS(4782), - [anon_sym_GT] = ACTIONS(4782), - [anon_sym_BANG_EQ] = ACTIONS(4782), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4782), - }, - [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] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(5154), - [sym_comment] = ACTIONS(53), - }, - [1940] = { - [sym_concatenation] = STATE(2227), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2227), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(5158), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5160), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(5162), - [anon_sym_COLON] = ACTIONS(5158), - [anon_sym_COLON_QMARK] = ACTIONS(5158), - [anon_sym_COLON_DASH] = ACTIONS(5158), - [anon_sym_PERCENT] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1941] = { - [sym_concatenation] = STATE(2230), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2230), - [anon_sym_RBRACE] = ACTIONS(5164), - [anon_sym_EQ] = ACTIONS(5166), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5168), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(5170), - [anon_sym_COLON] = ACTIONS(5166), - [anon_sym_COLON_QMARK] = ACTIONS(5166), - [anon_sym_COLON_DASH] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5166), - [anon_sym_DASH] = ACTIONS(5166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1942] = { - [sym_concatenation] = STATE(2232), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2232), - [anon_sym_RBRACE] = ACTIONS(5148), - [anon_sym_EQ] = ACTIONS(5172), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(5176), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1943] = { - [sym_file_descriptor] = ACTIONS(1772), - [sym__concat] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1774), - [anon_sym_AMP_GT] = ACTIONS(1774), - [anon_sym_AMP_GT_GT] = ACTIONS(1774), - [anon_sym_LT_AMP] = ACTIONS(1774), - [anon_sym_GT_AMP] = ACTIONS(1774), - [anon_sym_LT_LT] = ACTIONS(1774), - [anon_sym_LT_LT_DASH] = ACTIONS(1774), - [anon_sym_LT_LT_LT] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1774), - }, - [1944] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5178), - }, - [1945] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5180), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5148), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(4720), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_RPAREN] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4720), - [anon_sym_EQ_TILDE] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4720), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4720), - }, - [1964] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_PIPE] = ACTIONS(4726), - [anon_sym_RPAREN] = ACTIONS(4724), - [anon_sym_AMP_AMP] = ACTIONS(4724), - [anon_sym_PIPE_PIPE] = ACTIONS(4724), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4724), - [anon_sym_EQ_TILDE] = ACTIONS(4724), - [anon_sym_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4724), - [anon_sym_GT] = ACTIONS(4724), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4724), - }, - [1965] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4728), - [anon_sym_EQ_TILDE] = ACTIONS(4728), - [anon_sym_EQ_EQ] = ACTIONS(4728), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4728), - [anon_sym_GT] = ACTIONS(4728), - [anon_sym_BANG_EQ] = ACTIONS(4728), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4728), - }, - [1966] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1967] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(4736), - [anon_sym_RPAREN] = ACTIONS(4734), - [anon_sym_AMP_AMP] = ACTIONS(4734), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4734), - [anon_sym_EQ_TILDE] = ACTIONS(4734), - [anon_sym_EQ_EQ] = ACTIONS(4734), - [anon_sym_EQ] = ACTIONS(4736), - [anon_sym_LT] = ACTIONS(4734), - [anon_sym_GT] = ACTIONS(4734), - [anon_sym_BANG_EQ] = ACTIONS(4734), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4734), - }, - [1968] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5210), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1969] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_RPAREN] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4740), - [anon_sym_EQ_TILDE] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4740), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4740), - }, - [1970] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5212), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [1971] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_PIPE] = ACTIONS(4784), - [anon_sym_RPAREN] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4782), - [anon_sym_PIPE_PIPE] = ACTIONS(4782), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4782), - [anon_sym_EQ_TILDE] = ACTIONS(4782), - [anon_sym_EQ_EQ] = ACTIONS(4782), - [anon_sym_EQ] = ACTIONS(4784), - [anon_sym_LT] = ACTIONS(4782), - [anon_sym_GT] = ACTIONS(4782), - [anon_sym_BANG_EQ] = ACTIONS(4782), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4782), - }, - [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(4720), - [sym_variable_name] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_RPAREN] = ACTIONS(4722), - [anon_sym_SEMI_SEMI] = ACTIONS(4722), - [anon_sym_PIPE_AMP] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [sym__special_characters] = ACTIONS(4722), - [anon_sym_DQUOTE] = ACTIONS(4722), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym_raw_string] = ACTIONS(4722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), - [anon_sym_BQUOTE] = ACTIONS(4722), - [anon_sym_LT_LPAREN] = ACTIONS(4722), - [anon_sym_GT_LPAREN] = ACTIONS(4722), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4722), - [sym_word] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LF] = ACTIONS(4720), - [anon_sym_AMP] = ACTIONS(4722), - }, - [1975] = { - [sym__concat] = ACTIONS(4724), - [sym_variable_name] = ACTIONS(4724), - [anon_sym_PIPE] = ACTIONS(4726), - [anon_sym_RPAREN] = ACTIONS(4726), - [anon_sym_SEMI_SEMI] = ACTIONS(4726), - [anon_sym_PIPE_AMP] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [sym__special_characters] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4726), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym_raw_string] = ACTIONS(4726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), - [anon_sym_BQUOTE] = ACTIONS(4726), - [anon_sym_LT_LPAREN] = ACTIONS(4726), - [anon_sym_GT_LPAREN] = ACTIONS(4726), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4726), - [sym_word] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_LF] = ACTIONS(4724), - [anon_sym_AMP] = ACTIONS(4726), + [sym_word] = ACTIONS(4476), }, [1976] = { - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_SEMI_SEMI] = ACTIONS(4730), - [anon_sym_PIPE_AMP] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4730), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym_raw_string] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), - [anon_sym_BQUOTE] = ACTIONS(4730), - [anon_sym_LT_LPAREN] = ACTIONS(4730), - [anon_sym_GT_LPAREN] = ACTIONS(4730), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4728), - [anon_sym_AMP] = ACTIONS(4730), + [sym__terminated_statement] = STATE(2325), + [sym_for_statement] = STATE(2321), + [sym_c_style_for_statement] = STATE(2321), + [sym_while_statement] = STATE(2321), + [sym_if_statement] = STATE(2321), + [sym_case_statement] = STATE(2321), + [sym_function_definition] = STATE(2321), + [sym_subshell] = STATE(2321), + [sym_pipeline] = STATE(2321), + [sym_list] = STATE(2321), + [sym_negated_command] = STATE(2321), + [sym_test_command] = STATE(2321), + [sym_declaration_command] = STATE(2321), + [sym_unset_command] = STATE(2321), + [sym_command] = STATE(2321), + [sym_command_name] = STATE(1970), + [sym_variable_assignment] = STATE(2322), + [sym_subscript] = STATE(1972), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(1973), + [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), + [aux_sym_program_repeat1] = STATE(2325), + [aux_sym_command_repeat1] = STATE(1975), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5236), + [anon_sym_SEMI_SEMI] = ACTIONS(5342), + [anon_sym_function] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym_declare] = ACTIONS(4466), + [anon_sym_typeset] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_readonly] = ACTIONS(4466), + [anon_sym_local] = ACTIONS(4466), + [anon_sym_unset] = ACTIONS(4468), + [anon_sym_unsetenv] = ACTIONS(4468), + [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(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4486), }, [1977] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_case_item_repeat1] = STATE(1977), + [anon_sym_PIPE] = ACTIONS(5346), + [anon_sym_RPAREN] = ACTIONS(5232), + [sym_comment] = ACTIONS(53), }, [1978] = { - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(4736), - [anon_sym_RPAREN] = ACTIONS(4736), - [anon_sym_SEMI_SEMI] = ACTIONS(4736), - [anon_sym_PIPE_AMP] = ACTIONS(4736), - [anon_sym_AMP_AMP] = ACTIONS(4736), - [anon_sym_PIPE_PIPE] = ACTIONS(4736), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4736), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym_raw_string] = ACTIONS(4736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), - [anon_sym_BQUOTE] = ACTIONS(4736), - [anon_sym_LT_LPAREN] = ACTIONS(4736), - [anon_sym_GT_LPAREN] = ACTIONS(4736), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4734), - [anon_sym_AMP] = ACTIONS(4736), + [aux_sym_concatenation_repeat1] = STATE(1978), + [sym__concat] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), }, [1979] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5216), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(5349), + [sym__special_characters] = ACTIONS(5351), + [anon_sym_DQUOTE] = ACTIONS(5351), + [anon_sym_DOLLAR] = ACTIONS(5353), + [sym_raw_string] = ACTIONS(5351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5351), + [anon_sym_BQUOTE] = ACTIONS(5351), + [anon_sym_LT_LPAREN] = ACTIONS(5351), + [anon_sym_GT_LPAREN] = ACTIONS(5351), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5353), }, [1980] = { - [sym__concat] = ACTIONS(4740), - [sym_variable_name] = ACTIONS(4740), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_SEMI_SEMI] = ACTIONS(4742), - [anon_sym_PIPE_AMP] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [sym__special_characters] = ACTIONS(4742), - [anon_sym_DQUOTE] = ACTIONS(4742), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym_raw_string] = ACTIONS(4742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), - [anon_sym_BQUOTE] = ACTIONS(4742), - [anon_sym_LT_LPAREN] = ACTIONS(4742), - [anon_sym_GT_LPAREN] = ACTIONS(4742), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4742), - [sym_word] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_LF] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), + [anon_sym_esac] = ACTIONS(5355), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(5357), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), }, [1981] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5218), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_esac] = ACTIONS(5349), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(5357), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), }, [1982] = { - [sym__concat] = ACTIONS(4782), - [sym_variable_name] = ACTIONS(4782), - [anon_sym_PIPE] = ACTIONS(4784), - [anon_sym_RPAREN] = ACTIONS(4784), - [anon_sym_SEMI_SEMI] = ACTIONS(4784), - [anon_sym_PIPE_AMP] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4784), - [anon_sym_PIPE_PIPE] = ACTIONS(4784), - [sym__special_characters] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4784), - [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(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4784), - [sym_word] = ACTIONS(4784), - [anon_sym_SEMI] = ACTIONS(4784), - [anon_sym_LF] = ACTIONS(4782), - [anon_sym_AMP] = ACTIONS(4784), + [sym__terminated_statement] = STATE(2323), + [sym_for_statement] = STATE(2328), + [sym_c_style_for_statement] = STATE(2328), + [sym_while_statement] = STATE(2328), + [sym_if_statement] = STATE(2328), + [sym_case_statement] = STATE(2328), + [sym_function_definition] = STATE(2328), + [sym_subshell] = STATE(2328), + [sym_pipeline] = STATE(2328), + [sym_list] = STATE(2328), + [sym_negated_command] = STATE(2328), + [sym_test_command] = STATE(2328), + [sym_declaration_command] = STATE(2328), + [sym_unset_command] = STATE(2328), + [sym_command] = STATE(2328), + [sym_command_name] = STATE(1970), + [sym_variable_assignment] = STATE(2329), + [sym_subscript] = STATE(1972), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(1973), + [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), + [aux_sym_program_repeat1] = STATE(2323), + [aux_sym_command_repeat1] = STATE(1975), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5349), + [anon_sym_SEMI_SEMI] = ACTIONS(5359), + [anon_sym_function] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym_declare] = ACTIONS(4466), + [anon_sym_typeset] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_readonly] = ACTIONS(4466), + [anon_sym_local] = ACTIONS(4466), + [anon_sym_unset] = ACTIONS(4468), + [anon_sym_unsetenv] = ACTIONS(4468), + [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(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4486), }, [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), + [sym__terminated_statement] = STATE(2330), + [sym_for_statement] = STATE(2328), + [sym_c_style_for_statement] = STATE(2328), + [sym_while_statement] = STATE(2328), + [sym_if_statement] = STATE(2328), + [sym_case_statement] = STATE(2328), + [sym_function_definition] = STATE(2328), + [sym_subshell] = STATE(2328), + [sym_pipeline] = STATE(2328), + [sym_list] = STATE(2328), + [sym_negated_command] = STATE(2328), + [sym_test_command] = STATE(2328), + [sym_declaration_command] = STATE(2328), + [sym_unset_command] = STATE(2328), + [sym_command] = STATE(2328), + [sym_command_name] = STATE(1970), + [sym_variable_assignment] = STATE(2329), + [sym_subscript] = STATE(1972), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(1973), + [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), + [aux_sym_program_repeat1] = STATE(2330), + [aux_sym_command_repeat1] = STATE(1975), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5349), + [anon_sym_SEMI_SEMI] = ACTIONS(5359), + [anon_sym_function] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym_declare] = ACTIONS(4466), + [anon_sym_typeset] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_readonly] = ACTIONS(4466), + [anon_sym_local] = ACTIONS(4466), + [anon_sym_unset] = ACTIONS(4468), + [anon_sym_unsetenv] = ACTIONS(4468), + [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(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4486), }, [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), + [anon_sym_esac] = ACTIONS(5361), + [anon_sym_PIPE] = ACTIONS(5363), + [anon_sym_RPAREN] = ACTIONS(5361), + [anon_sym_SEMI_SEMI] = ACTIONS(5361), + [anon_sym_PIPE_AMP] = ACTIONS(5361), + [anon_sym_AMP_AMP] = ACTIONS(5361), + [anon_sym_PIPE_PIPE] = ACTIONS(5361), + [anon_sym_BQUOTE] = ACTIONS(5361), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5363), + [anon_sym_LF] = ACTIONS(5361), + [anon_sym_AMP] = ACTIONS(5363), }, [1985] = { - [sym__concat] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_RPAREN] = ACTIONS(4722), - [anon_sym_SEMI_SEMI] = ACTIONS(4722), - [anon_sym_PIPE_AMP] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [sym__special_characters] = ACTIONS(4722), - [anon_sym_DQUOTE] = ACTIONS(4722), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym_raw_string] = ACTIONS(4722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), - [anon_sym_BQUOTE] = ACTIONS(4722), - [anon_sym_LT_LPAREN] = ACTIONS(4722), - [anon_sym_GT_LPAREN] = ACTIONS(4722), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4722), - [sym_word] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LF] = ACTIONS(4720), - [anon_sym_AMP] = ACTIONS(4722), + [aux_sym_case_item_repeat1] = STATE(2332), + [aux_sym_concatenation_repeat1] = STATE(1547), + [sym__concat] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(5365), + [sym_comment] = ACTIONS(53), }, [1986] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_PIPE] = ACTIONS(4726), - [anon_sym_RPAREN] = ACTIONS(4726), - [anon_sym_SEMI_SEMI] = ACTIONS(4726), - [anon_sym_PIPE_AMP] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [sym__special_characters] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4726), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym_raw_string] = ACTIONS(4726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), - [anon_sym_BQUOTE] = ACTIONS(4726), - [anon_sym_LT_LPAREN] = ACTIONS(4726), - [anon_sym_GT_LPAREN] = ACTIONS(4726), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4726), - [sym_word] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_LF] = ACTIONS(4724), - [anon_sym_AMP] = ACTIONS(4726), + [aux_sym_case_item_repeat1] = STATE(2334), + [aux_sym_concatenation_repeat1] = STATE(1547), + [sym__concat] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(5367), + [sym_comment] = ACTIONS(53), }, [1987] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_PIPE] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_SEMI_SEMI] = ACTIONS(4730), - [anon_sym_PIPE_AMP] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4730), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym_raw_string] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), - [anon_sym_BQUOTE] = ACTIONS(4730), - [anon_sym_LT_LPAREN] = ACTIONS(4730), - [anon_sym_GT_LPAREN] = ACTIONS(4730), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4728), - [anon_sym_AMP] = ACTIONS(4730), + [aux_sym_case_item_repeat1] = STATE(2334), + [anon_sym_PIPE] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(5367), + [sym_comment] = ACTIONS(53), }, [1988] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(5369), + [sym_comment] = ACTIONS(53), }, [1989] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(4736), - [anon_sym_RPAREN] = ACTIONS(4736), - [anon_sym_SEMI_SEMI] = ACTIONS(4736), - [anon_sym_PIPE_AMP] = ACTIONS(4736), - [anon_sym_AMP_AMP] = ACTIONS(4736), - [anon_sym_PIPE_PIPE] = ACTIONS(4736), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4736), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym_raw_string] = ACTIONS(4736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), - [anon_sym_BQUOTE] = ACTIONS(4736), - [anon_sym_LT_LPAREN] = ACTIONS(4736), - [anon_sym_GT_LPAREN] = ACTIONS(4736), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4734), - [anon_sym_AMP] = ACTIONS(4736), + [anon_sym_esac] = ACTIONS(5371), + [anon_sym_PIPE] = ACTIONS(5373), + [anon_sym_RPAREN] = ACTIONS(5371), + [anon_sym_SEMI_SEMI] = ACTIONS(5371), + [anon_sym_PIPE_AMP] = ACTIONS(5371), + [anon_sym_AMP_AMP] = ACTIONS(5371), + [anon_sym_PIPE_PIPE] = ACTIONS(5371), + [anon_sym_BQUOTE] = ACTIONS(5371), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5373), + [anon_sym_LF] = ACTIONS(5371), + [anon_sym_AMP] = ACTIONS(5373), }, [1990] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5222), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_esac] = ACTIONS(5375), + [sym_comment] = ACTIONS(53), }, [1991] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_SEMI_SEMI] = ACTIONS(4742), - [anon_sym_PIPE_AMP] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [sym__special_characters] = ACTIONS(4742), - [anon_sym_DQUOTE] = ACTIONS(4742), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym_raw_string] = ACTIONS(4742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), - [anon_sym_BQUOTE] = ACTIONS(4742), - [anon_sym_LT_LPAREN] = ACTIONS(4742), - [anon_sym_GT_LPAREN] = ACTIONS(4742), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4742), - [sym_word] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_LF] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), + [sym__concat] = ACTIONS(4885), + [anon_sym_in] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [1992] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4889), + [anon_sym_in] = ACTIONS(4889), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4889), }, [1993] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_PIPE] = ACTIONS(4784), - [anon_sym_RPAREN] = ACTIONS(4784), - [anon_sym_SEMI_SEMI] = ACTIONS(4784), - [anon_sym_PIPE_AMP] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4784), - [anon_sym_PIPE_PIPE] = ACTIONS(4784), - [sym__special_characters] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4784), - [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(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4784), - [sym_word] = ACTIONS(4784), - [anon_sym_SEMI] = ACTIONS(4784), - [anon_sym_LF] = ACTIONS(4782), - [anon_sym_AMP] = ACTIONS(4784), + [sym__concat] = ACTIONS(4893), + [anon_sym_in] = ACTIONS(4893), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5377), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(4899), + [anon_sym_in] = ACTIONS(4899), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4899), }, [1996] = { - [sym_file_descriptor] = ACTIONS(4720), - [sym__concat] = ACTIONS(4720), - [sym_variable_name] = ACTIONS(4720), - [anon_sym_LT] = ACTIONS(4722), - [anon_sym_GT] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4720), - [anon_sym_AMP_GT] = ACTIONS(4722), - [anon_sym_AMP_GT_GT] = ACTIONS(4720), - [anon_sym_LT_AMP] = ACTIONS(4720), - [anon_sym_GT_AMP] = ACTIONS(4720), - [sym__special_characters] = ACTIONS(4720), - [anon_sym_DQUOTE] = ACTIONS(4720), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym_raw_string] = ACTIONS(4720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4720), - [anon_sym_BQUOTE] = ACTIONS(4720), - [anon_sym_LT_LPAREN] = ACTIONS(4720), - [anon_sym_GT_LPAREN] = ACTIONS(4720), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4720), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5379), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1997] = { - [sym_file_descriptor] = ACTIONS(4724), - [sym__concat] = ACTIONS(4724), - [sym_variable_name] = ACTIONS(4724), - [anon_sym_LT] = ACTIONS(4726), - [anon_sym_GT] = ACTIONS(4726), - [anon_sym_GT_GT] = ACTIONS(4724), - [anon_sym_AMP_GT] = ACTIONS(4726), - [anon_sym_AMP_GT_GT] = ACTIONS(4724), - [anon_sym_LT_AMP] = ACTIONS(4724), - [anon_sym_GT_AMP] = ACTIONS(4724), - [sym__special_characters] = ACTIONS(4724), - [anon_sym_DQUOTE] = ACTIONS(4724), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym_raw_string] = ACTIONS(4724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4724), - [anon_sym_BQUOTE] = ACTIONS(4724), - [anon_sym_LT_LPAREN] = ACTIONS(4724), - [anon_sym_GT_LPAREN] = ACTIONS(4724), + [sym__concat] = ACTIONS(4905), + [anon_sym_in] = ACTIONS(4905), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4724), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4905), }, [1998] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4728), - [anon_sym_AMP_GT] = ACTIONS(4730), - [anon_sym_AMP_GT_GT] = ACTIONS(4728), - [anon_sym_LT_AMP] = ACTIONS(4728), - [anon_sym_GT_AMP] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym_raw_string] = ACTIONS(4728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), - [anon_sym_BQUOTE] = ACTIONS(4728), - [anon_sym_LT_LPAREN] = ACTIONS(4728), - [anon_sym_GT_LPAREN] = ACTIONS(4728), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4728), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5381), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [1999] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5226), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4947), + [anon_sym_in] = ACTIONS(4947), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4947), }, [2000] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_LT] = ACTIONS(4736), - [anon_sym_GT] = ACTIONS(4736), - [anon_sym_GT_GT] = ACTIONS(4734), - [anon_sym_AMP_GT] = ACTIONS(4736), - [anon_sym_AMP_GT_GT] = ACTIONS(4734), - [anon_sym_LT_AMP] = ACTIONS(4734), - [anon_sym_GT_AMP] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(4734), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym_raw_string] = ACTIONS(4734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), - [anon_sym_BQUOTE] = ACTIONS(4734), - [anon_sym_LT_LPAREN] = ACTIONS(4734), - [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym__concat] = ACTIONS(4955), + [anon_sym_in] = ACTIONS(4955), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), }, [2001] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4959), + [anon_sym_in] = ACTIONS(4959), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4959), }, [2002] = { - [sym_file_descriptor] = ACTIONS(4740), - [sym__concat] = ACTIONS(4740), - [sym_variable_name] = ACTIONS(4740), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_GT_GT] = ACTIONS(4740), - [anon_sym_AMP_GT] = ACTIONS(4742), - [anon_sym_AMP_GT_GT] = ACTIONS(4740), - [anon_sym_LT_AMP] = ACTIONS(4740), - [anon_sym_GT_AMP] = ACTIONS(4740), - [sym__special_characters] = ACTIONS(4740), - [anon_sym_DQUOTE] = ACTIONS(4740), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym_raw_string] = ACTIONS(4740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4740), - [anon_sym_BQUOTE] = ACTIONS(4740), - [anon_sym_LT_LPAREN] = ACTIONS(4740), - [anon_sym_GT_LPAREN] = ACTIONS(4740), + [aux_sym_concatenation_repeat1] = STATE(2002), + [sym__concat] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4740), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [2003] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5230), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(2005), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), }, [2004] = { - [sym_file_descriptor] = ACTIONS(4782), - [sym__concat] = ACTIONS(4782), - [sym_variable_name] = ACTIONS(4782), - [anon_sym_LT] = ACTIONS(4784), - [anon_sym_GT] = ACTIONS(4784), - [anon_sym_GT_GT] = ACTIONS(4782), - [anon_sym_AMP_GT] = ACTIONS(4784), - [anon_sym_AMP_GT_GT] = ACTIONS(4782), - [anon_sym_LT_AMP] = ACTIONS(4782), - [anon_sym_GT_AMP] = ACTIONS(4782), - [sym__special_characters] = ACTIONS(4782), - [anon_sym_DQUOTE] = ACTIONS(4782), - [anon_sym_DOLLAR] = ACTIONS(4784), - [sym_raw_string] = ACTIONS(4782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4782), - [anon_sym_BQUOTE] = ACTIONS(4782), - [anon_sym_LT_LPAREN] = ACTIONS(4782), - [anon_sym_GT_LPAREN] = ACTIONS(4782), + [aux_sym_concatenation_repeat1] = STATE(2005), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4782), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2340), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4790), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2008), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4794), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), }, [2007] = { - [sym__concat] = ACTIONS(4720), - [anon_sym_DQUOTE] = ACTIONS(4722), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym__string_content] = ACTIONS(4720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), - [anon_sym_BQUOTE] = ACTIONS(4722), - [sym_comment] = ACTIONS(179), + [aux_sym_concatenation_repeat1] = STATE(2008), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), }, [2008] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_DQUOTE] = ACTIONS(4726), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym__string_content] = ACTIONS(4724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), - [anon_sym_BQUOTE] = ACTIONS(4726), - [sym_comment] = ACTIONS(179), + [aux_sym_concatenation_repeat1] = STATE(2341), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [2009] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4730), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym__string_content] = ACTIONS(4728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), - [anon_sym_BQUOTE] = ACTIONS(4730), - [sym_comment] = ACTIONS(179), + [sym__concat] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_EQ_TILDE] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4885), }, [2010] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4889), + [anon_sym_EQ_EQ] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4889), + [anon_sym_GT] = ACTIONS(4889), + [anon_sym_BANG_EQ] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4889), }, [2011] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_DQUOTE] = ACTIONS(4736), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym__string_content] = ACTIONS(4734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), - [anon_sym_BQUOTE] = ACTIONS(4736), - [sym_comment] = ACTIONS(179), + [sym__concat] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [anon_sym_RBRACK] = ACTIONS(4893), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4893), }, [2012] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5234), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5383), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2013] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_DQUOTE] = ACTIONS(4742), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym__string_content] = ACTIONS(4740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), - [anon_sym_BQUOTE] = ACTIONS(4742), - [sym_comment] = ACTIONS(179), + [sym__concat] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [anon_sym_RBRACK] = ACTIONS(4899), + [anon_sym_EQ_TILDE] = ACTIONS(4899), + [anon_sym_EQ_EQ] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4899), + [anon_sym_GT] = ACTIONS(4899), + [anon_sym_BANG_EQ] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4899), }, [2014] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5236), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5385), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2015] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_DQUOTE] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4784), - [sym__string_content] = ACTIONS(4782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), - [anon_sym_BQUOTE] = ACTIONS(4784), - [sym_comment] = ACTIONS(179), + [sym__concat] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [anon_sym_RBRACK] = ACTIONS(4905), + [anon_sym_EQ_TILDE] = ACTIONS(4905), + [anon_sym_EQ_EQ] = ACTIONS(4905), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG_EQ] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4905), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5387), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_RBRACK] = ACTIONS(4947), + [anon_sym_EQ_TILDE] = ACTIONS(4947), + [anon_sym_EQ_EQ] = ACTIONS(4947), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_BANG_EQ] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4947), }, [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), + [sym__concat] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_RBRACK] = ACTIONS(4955), + [anon_sym_EQ_TILDE] = ACTIONS(4955), + [anon_sym_EQ_EQ] = ACTIONS(4955), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG_EQ] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4955), }, [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), + [sym__concat] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_RBRACK] = ACTIONS(4959), + [anon_sym_EQ_TILDE] = ACTIONS(4959), + [anon_sym_EQ_EQ] = ACTIONS(4959), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG_EQ] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4959), }, [2020] = { - [sym__concat] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2818), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1664), + [anon_sym_esac] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [2021] = { - [sym__concat] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), + [aux_sym_concatenation_repeat1] = STATE(2021), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(5389), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [2022] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5242), + [sym_file_descriptor] = ACTIONS(1671), + [sym__concat] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1673), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1673), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), }, [2023] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5244), - [sym_comment] = ACTIONS(53), + [anon_sym_DQUOTE] = ACTIONS(5392), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [2024] = { - [anon_sym_RBRACE] = ACTIONS(5244), + [sym_concatenation] = STATE(2349), + [sym_string] = STATE(2348), + [sym_simple_expansion] = STATE(2348), + [sym_string_expansion] = STATE(2348), + [sym_expansion] = STATE(2348), + [sym_command_substitution] = STATE(2348), + [sym_process_substitution] = STATE(2348), + [anon_sym_RBRACE] = ACTIONS(5394), + [sym__special_characters] = ACTIONS(5396), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5398), }, [2025] = { - [sym_concatenation] = STATE(2262), - [sym_string] = STATE(2261), - [sym_simple_expansion] = STATE(2261), - [sym_string_expansion] = STATE(2261), - [sym_expansion] = STATE(2261), - [sym_command_substitution] = STATE(2261), - [sym_process_substitution] = STATE(2261), - [anon_sym_RBRACE] = ACTIONS(5244), - [sym__special_characters] = ACTIONS(5246), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(5248), - [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), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(5400), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5248), }, [2026] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [sym_comment] = ACTIONS(53), - }, - [2027] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5250), - }, - [2028] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(2353), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5252), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2029] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - }, - [2030] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5254), - }, - [2031] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5256), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2032] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5258), - }, - [2033] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5244), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2034] = { - [sym_concatenation] = STATE(2269), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2269), - [anon_sym_RBRACE] = ACTIONS(5260), - [anon_sym_EQ] = ACTIONS(5262), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5262), - [anon_sym_COLON_QMARK] = ACTIONS(5262), - [anon_sym_COLON_DASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2035] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_RBRACE] = ACTIONS(2948), - [sym_comment] = ACTIONS(53), - }, - [2036] = { - [sym_concatenation] = STATE(2271), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2271), - [anon_sym_RBRACE] = ACTIONS(5266), - [anon_sym_EQ] = ACTIONS(5268), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2037] = { - [sym__concat] = ACTIONS(2993), - [anon_sym_RBRACE] = ACTIONS(2993), - [sym_comment] = ACTIONS(53), - }, - [2038] = { - [sym_concatenation] = STATE(2273), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2273), - [anon_sym_RBRACE] = ACTIONS(5272), - [anon_sym_EQ] = ACTIONS(5274), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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__simple_heredoc_body] = ACTIONS(5282), - [sym__heredoc_body_beginning] = ACTIONS(5282), - [sym_file_descriptor] = ACTIONS(5282), - [sym__concat] = ACTIONS(5282), - [anon_sym_esac] = ACTIONS(5284), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_RPAREN] = ACTIONS(5284), - [anon_sym_SEMI_SEMI] = ACTIONS(5284), - [anon_sym_PIPE_AMP] = ACTIONS(5284), - [anon_sym_AMP_AMP] = ACTIONS(5284), - [anon_sym_PIPE_PIPE] = ACTIONS(5284), - [anon_sym_EQ_TILDE] = ACTIONS(5284), - [anon_sym_EQ_EQ] = ACTIONS(5284), - [anon_sym_LT] = ACTIONS(5284), - [anon_sym_GT] = ACTIONS(5284), - [anon_sym_GT_GT] = ACTIONS(5284), - [anon_sym_AMP_GT] = ACTIONS(5284), - [anon_sym_AMP_GT_GT] = ACTIONS(5284), - [anon_sym_LT_AMP] = ACTIONS(5284), - [anon_sym_GT_AMP] = ACTIONS(5284), - [anon_sym_LT_LT] = ACTIONS(5284), - [anon_sym_LT_LT_DASH] = ACTIONS(5284), - [anon_sym_LT_LT_LT] = ACTIONS(5284), - [sym__special_characters] = ACTIONS(5284), - [anon_sym_DQUOTE] = ACTIONS(5284), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), - [anon_sym_BQUOTE] = ACTIONS(5284), - [anon_sym_LT_LPAREN] = ACTIONS(5284), - [anon_sym_GT_LPAREN] = ACTIONS(5284), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5284), - [anon_sym_SEMI] = ACTIONS(5284), - [anon_sym_LF] = ACTIONS(5282), - [anon_sym_AMP] = ACTIONS(5284), - }, - [2045] = { - [sym__simple_heredoc_body] = ACTIONS(5286), - [sym__heredoc_body_beginning] = ACTIONS(5286), - [sym_file_descriptor] = ACTIONS(5286), - [sym__concat] = ACTIONS(5286), - [anon_sym_esac] = ACTIONS(5288), - [anon_sym_PIPE] = ACTIONS(5288), - [anon_sym_RPAREN] = ACTIONS(5288), - [anon_sym_SEMI_SEMI] = ACTIONS(5288), - [anon_sym_PIPE_AMP] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [anon_sym_EQ_TILDE] = ACTIONS(5288), - [anon_sym_EQ_EQ] = ACTIONS(5288), - [anon_sym_LT] = ACTIONS(5288), - [anon_sym_GT] = ACTIONS(5288), - [anon_sym_GT_GT] = ACTIONS(5288), - [anon_sym_AMP_GT] = ACTIONS(5288), - [anon_sym_AMP_GT_GT] = ACTIONS(5288), - [anon_sym_LT_AMP] = ACTIONS(5288), - [anon_sym_GT_AMP] = ACTIONS(5288), - [anon_sym_LT_LT] = ACTIONS(5288), - [anon_sym_LT_LT_DASH] = ACTIONS(5288), - [anon_sym_LT_LT_LT] = ACTIONS(5288), - [sym__special_characters] = ACTIONS(5288), - [anon_sym_DQUOTE] = ACTIONS(5288), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym_raw_string] = ACTIONS(5288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), - [anon_sym_BQUOTE] = ACTIONS(5288), - [anon_sym_LT_LPAREN] = ACTIONS(5288), - [anon_sym_GT_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5288), - [anon_sym_SEMI] = ACTIONS(5288), - [anon_sym_LF] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5288), - }, - [2046] = { - [sym__simple_heredoc_body] = ACTIONS(5290), - [sym__heredoc_body_beginning] = ACTIONS(5290), - [sym_file_descriptor] = ACTIONS(5290), - [sym__concat] = ACTIONS(5290), - [anon_sym_esac] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5292), - [anon_sym_RPAREN] = ACTIONS(5292), - [anon_sym_SEMI_SEMI] = ACTIONS(5292), - [anon_sym_PIPE_AMP] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [anon_sym_EQ_TILDE] = ACTIONS(5292), - [anon_sym_EQ_EQ] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5292), - [anon_sym_GT] = ACTIONS(5292), - [anon_sym_GT_GT] = ACTIONS(5292), - [anon_sym_AMP_GT] = ACTIONS(5292), - [anon_sym_AMP_GT_GT] = ACTIONS(5292), - [anon_sym_LT_AMP] = ACTIONS(5292), - [anon_sym_GT_AMP] = ACTIONS(5292), - [anon_sym_LT_LT] = ACTIONS(5292), - [anon_sym_LT_LT_DASH] = ACTIONS(5292), - [anon_sym_LT_LT_LT] = ACTIONS(5292), - [sym__special_characters] = ACTIONS(5292), - [anon_sym_DQUOTE] = ACTIONS(5292), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym_raw_string] = ACTIONS(5292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), - [anon_sym_BQUOTE] = ACTIONS(5292), - [anon_sym_LT_LPAREN] = ACTIONS(5292), - [anon_sym_GT_LPAREN] = ACTIONS(5292), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5292), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LF] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5292), - }, - [2047] = { - [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), - }, - [2048] = { - [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), - }, - [2049] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5294), - [sym_comment] = ACTIONS(53), - }, - [2050] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5296), - [sym_comment] = ACTIONS(53), - }, - [2051] = { - [anon_sym_RBRACE] = ACTIONS(5296), - [sym_comment] = ACTIONS(53), - }, - [2052] = { - [sym_concatenation] = STATE(2279), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2279), - [anon_sym_RBRACE] = ACTIONS(5298), - [anon_sym_EQ] = ACTIONS(5300), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5300), - [anon_sym_COLON_QMARK] = ACTIONS(5300), - [anon_sym_COLON_DASH] = ACTIONS(5300), - [anon_sym_PERCENT] = ACTIONS(5300), - [anon_sym_DASH] = ACTIONS(5300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2053] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_RBRACE] = ACTIONS(3874), - [anon_sym_EQ] = ACTIONS(3876), - [sym__special_characters] = ACTIONS(3876), - [anon_sym_DQUOTE] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym_raw_string] = ACTIONS(3874), - [anon_sym_POUND] = ACTIONS(3874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3874), - [anon_sym_COLON] = ACTIONS(3876), - [anon_sym_COLON_QMARK] = ACTIONS(3876), - [anon_sym_COLON_DASH] = ACTIONS(3876), - [anon_sym_PERCENT] = ACTIONS(3876), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3874), - [anon_sym_BQUOTE] = ACTIONS(3874), - [anon_sym_LT_LPAREN] = ACTIONS(3874), - [anon_sym_GT_LPAREN] = ACTIONS(3874), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3876), - }, - [2054] = { - [sym_concatenation] = STATE(2281), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2281), - [anon_sym_RBRACE] = ACTIONS(5304), - [anon_sym_EQ] = ACTIONS(5306), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5306), - [anon_sym_COLON_QMARK] = ACTIONS(5306), - [anon_sym_COLON_DASH] = ACTIONS(5306), - [anon_sym_PERCENT] = ACTIONS(5306), - [anon_sym_DASH] = ACTIONS(5306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2055] = { - [sym__concat] = ACTIONS(3884), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_EQ] = ACTIONS(3886), - [sym__special_characters] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3884), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym_raw_string] = ACTIONS(3884), - [anon_sym_POUND] = ACTIONS(3884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3884), - [anon_sym_COLON] = ACTIONS(3886), - [anon_sym_COLON_QMARK] = ACTIONS(3886), - [anon_sym_COLON_DASH] = ACTIONS(3886), - [anon_sym_PERCENT] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3884), - [anon_sym_BQUOTE] = ACTIONS(3884), - [anon_sym_LT_LPAREN] = ACTIONS(3884), - [anon_sym_GT_LPAREN] = ACTIONS(3884), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3886), - }, - [2056] = { - [sym_concatenation] = STATE(2283), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2283), - [anon_sym_RBRACE] = ACTIONS(5310), - [anon_sym_EQ] = ACTIONS(5312), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2057] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_RBRACE] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_POUND] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [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(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3941), - }, - [2058] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5316), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2059] = { - [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), - }, - [2060] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5318), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2061] = { - [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), - }, - [2062] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5320), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2063] = { - [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), - }, - [2064] = { - [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), - }, - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5322), - [sym_comment] = ACTIONS(53), - }, - [2074] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5324), - [sym_comment] = ACTIONS(53), - }, - [2075] = { - [anon_sym_RBRACE] = ACTIONS(5324), - [sym_comment] = ACTIONS(53), - }, - [2076] = { - [sym_concatenation] = STATE(2292), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2292), - [anon_sym_RBRACE] = ACTIONS(5326), - [anon_sym_EQ] = ACTIONS(5328), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5328), - [anon_sym_COLON_QMARK] = ACTIONS(5328), - [anon_sym_COLON_DASH] = ACTIONS(5328), - [anon_sym_PERCENT] = ACTIONS(5328), - [anon_sym_DASH] = ACTIONS(5328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2077] = { - [sym__heredoc_body_middle] = ACTIONS(3874), - [sym__heredoc_body_end] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3874), - [sym_comment] = ACTIONS(53), - }, - [2078] = { - [sym_concatenation] = STATE(2294), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2294), - [anon_sym_RBRACE] = ACTIONS(5332), - [anon_sym_EQ] = ACTIONS(5334), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5336), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5334), - [anon_sym_COLON_QMARK] = ACTIONS(5334), - [anon_sym_COLON_DASH] = ACTIONS(5334), - [anon_sym_PERCENT] = ACTIONS(5334), - [anon_sym_DASH] = ACTIONS(5334), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2079] = { - [sym__heredoc_body_middle] = ACTIONS(3884), - [sym__heredoc_body_end] = ACTIONS(3884), - [anon_sym_DOLLAR] = ACTIONS(3886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3884), - [sym_comment] = ACTIONS(53), - }, - [2080] = { - [sym_concatenation] = STATE(2296), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2296), - [anon_sym_RBRACE] = ACTIONS(5338), - [anon_sym_EQ] = ACTIONS(5340), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5340), - [anon_sym_COLON_QMARK] = ACTIONS(5340), - [anon_sym_COLON_DASH] = ACTIONS(5340), - [anon_sym_PERCENT] = ACTIONS(5340), - [anon_sym_DASH] = ACTIONS(5340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2081] = { - [sym__heredoc_body_middle] = ACTIONS(3939), - [sym__heredoc_body_end] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - }, - [2082] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5344), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5346), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5348), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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__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(3810), - }, - [2089] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5350), - [sym_comment] = ACTIONS(53), - }, - [2090] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5352), - [sym_comment] = ACTIONS(53), - }, - [2091] = { - [anon_sym_RBRACE] = ACTIONS(5352), - [sym_comment] = ACTIONS(53), - }, - [2092] = { - [sym_concatenation] = STATE(2303), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2303), - [anon_sym_RBRACE] = ACTIONS(5354), - [anon_sym_EQ] = ACTIONS(5356), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5358), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5356), - [anon_sym_COLON_QMARK] = ACTIONS(5356), - [anon_sym_COLON_DASH] = ACTIONS(5356), - [anon_sym_PERCENT] = ACTIONS(5356), - [anon_sym_DASH] = ACTIONS(5356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2093] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_RPAREN] = ACTIONS(3874), - [sym__special_characters] = ACTIONS(3874), - [anon_sym_DQUOTE] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym_raw_string] = ACTIONS(3874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3874), - [anon_sym_BQUOTE] = ACTIONS(3874), - [anon_sym_LT_LPAREN] = ACTIONS(3874), - [anon_sym_GT_LPAREN] = ACTIONS(3874), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3874), - }, - [2094] = { - [sym_concatenation] = STATE(2305), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2305), - [anon_sym_RBRACE] = ACTIONS(5360), - [anon_sym_EQ] = ACTIONS(5362), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5364), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5362), - [anon_sym_COLON_QMARK] = ACTIONS(5362), - [anon_sym_COLON_DASH] = ACTIONS(5362), - [anon_sym_PERCENT] = ACTIONS(5362), - [anon_sym_DASH] = ACTIONS(5362), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2095] = { - [sym__concat] = ACTIONS(3884), - [anon_sym_RPAREN] = ACTIONS(3884), - [sym__special_characters] = ACTIONS(3884), - [anon_sym_DQUOTE] = ACTIONS(3884), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym_raw_string] = ACTIONS(3884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3884), - [anon_sym_BQUOTE] = ACTIONS(3884), - [anon_sym_LT_LPAREN] = ACTIONS(3884), - [anon_sym_GT_LPAREN] = ACTIONS(3884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3884), - }, - [2096] = { - [sym_concatenation] = STATE(2307), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2307), - [anon_sym_RBRACE] = ACTIONS(5366), - [anon_sym_EQ] = ACTIONS(5368), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5368), - [anon_sym_COLON_QMARK] = ACTIONS(5368), - [anon_sym_COLON_DASH] = ACTIONS(5368), - [anon_sym_PERCENT] = ACTIONS(5368), - [anon_sym_DASH] = ACTIONS(5368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2097] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_RPAREN] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3939), - }, - [2098] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5372), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5374), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5376), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(4720), - [sym__concat] = ACTIONS(4720), - [sym_variable_name] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4722), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_RPAREN] = ACTIONS(4722), - [anon_sym_SEMI_SEMI] = ACTIONS(4722), - [anon_sym_PIPE_AMP] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4722), - [anon_sym_GT] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_AMP_GT] = ACTIONS(4722), - [anon_sym_AMP_GT_GT] = ACTIONS(4722), - [anon_sym_LT_AMP] = ACTIONS(4722), - [anon_sym_GT_AMP] = ACTIONS(4722), - [sym__special_characters] = ACTIONS(4722), - [anon_sym_DQUOTE] = ACTIONS(4722), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym_raw_string] = ACTIONS(4722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), - [anon_sym_BQUOTE] = ACTIONS(4722), - [anon_sym_LT_LPAREN] = ACTIONS(4722), - [anon_sym_GT_LPAREN] = ACTIONS(4722), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LF] = ACTIONS(4720), - [anon_sym_AMP] = ACTIONS(4722), - }, - [2106] = { - [sym_file_descriptor] = ACTIONS(4724), - [sym__concat] = ACTIONS(4724), - [sym_variable_name] = ACTIONS(4724), - [anon_sym_esac] = ACTIONS(4726), - [anon_sym_PIPE] = ACTIONS(4726), - [anon_sym_RPAREN] = ACTIONS(4726), - [anon_sym_SEMI_SEMI] = ACTIONS(4726), - [anon_sym_PIPE_AMP] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4726), - [anon_sym_GT] = ACTIONS(4726), - [anon_sym_GT_GT] = ACTIONS(4726), - [anon_sym_AMP_GT] = ACTIONS(4726), - [anon_sym_AMP_GT_GT] = ACTIONS(4726), - [anon_sym_LT_AMP] = ACTIONS(4726), - [anon_sym_GT_AMP] = ACTIONS(4726), - [sym__special_characters] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4726), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym_raw_string] = ACTIONS(4726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), - [anon_sym_BQUOTE] = ACTIONS(4726), - [anon_sym_LT_LPAREN] = ACTIONS(4726), - [anon_sym_GT_LPAREN] = ACTIONS(4726), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_LF] = ACTIONS(4724), - [anon_sym_AMP] = ACTIONS(4726), - }, - [2107] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_SEMI_SEMI] = ACTIONS(4730), - [anon_sym_PIPE_AMP] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4730), - [anon_sym_AMP_GT] = ACTIONS(4730), - [anon_sym_AMP_GT_GT] = ACTIONS(4730), - [anon_sym_LT_AMP] = ACTIONS(4730), - [anon_sym_GT_AMP] = ACTIONS(4730), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4730), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym_raw_string] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), - [anon_sym_BQUOTE] = ACTIONS(4730), - [anon_sym_LT_LPAREN] = ACTIONS(4730), - [anon_sym_GT_LPAREN] = ACTIONS(4730), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4728), - [anon_sym_AMP] = ACTIONS(4730), - }, - [2108] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5378), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2109] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [anon_sym_PIPE] = ACTIONS(4736), - [anon_sym_RPAREN] = ACTIONS(4736), - [anon_sym_SEMI_SEMI] = ACTIONS(4736), - [anon_sym_PIPE_AMP] = ACTIONS(4736), - [anon_sym_AMP_AMP] = ACTIONS(4736), - [anon_sym_PIPE_PIPE] = ACTIONS(4736), - [anon_sym_LT] = ACTIONS(4736), - [anon_sym_GT] = ACTIONS(4736), - [anon_sym_GT_GT] = ACTIONS(4736), - [anon_sym_AMP_GT] = ACTIONS(4736), - [anon_sym_AMP_GT_GT] = ACTIONS(4736), - [anon_sym_LT_AMP] = ACTIONS(4736), - [anon_sym_GT_AMP] = ACTIONS(4736), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4736), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym_raw_string] = ACTIONS(4736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), - [anon_sym_BQUOTE] = ACTIONS(4736), - [anon_sym_LT_LPAREN] = ACTIONS(4736), - [anon_sym_GT_LPAREN] = ACTIONS(4736), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4734), - [anon_sym_AMP] = ACTIONS(4736), - }, - [2110] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5380), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2111] = { - [sym_file_descriptor] = ACTIONS(4740), - [sym__concat] = ACTIONS(4740), - [sym_variable_name] = ACTIONS(4740), - [anon_sym_esac] = ACTIONS(4742), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_SEMI_SEMI] = ACTIONS(4742), - [anon_sym_PIPE_AMP] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_GT_GT] = ACTIONS(4742), - [anon_sym_AMP_GT] = ACTIONS(4742), - [anon_sym_AMP_GT_GT] = ACTIONS(4742), - [anon_sym_LT_AMP] = ACTIONS(4742), - [anon_sym_GT_AMP] = ACTIONS(4742), - [sym__special_characters] = ACTIONS(4742), - [anon_sym_DQUOTE] = ACTIONS(4742), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym_raw_string] = ACTIONS(4742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), - [anon_sym_BQUOTE] = ACTIONS(4742), - [anon_sym_LT_LPAREN] = ACTIONS(4742), - [anon_sym_GT_LPAREN] = ACTIONS(4742), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_LF] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), - }, - [2112] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5382), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2113] = { - [sym_file_descriptor] = ACTIONS(4782), - [sym__concat] = ACTIONS(4782), - [sym_variable_name] = ACTIONS(4782), - [anon_sym_esac] = ACTIONS(4784), - [anon_sym_PIPE] = ACTIONS(4784), - [anon_sym_RPAREN] = ACTIONS(4784), - [anon_sym_SEMI_SEMI] = ACTIONS(4784), - [anon_sym_PIPE_AMP] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4784), - [anon_sym_PIPE_PIPE] = ACTIONS(4784), - [anon_sym_LT] = ACTIONS(4784), - [anon_sym_GT] = ACTIONS(4784), - [anon_sym_GT_GT] = ACTIONS(4784), - [anon_sym_AMP_GT] = ACTIONS(4784), - [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(4784), - [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(179), - [sym_word] = ACTIONS(4784), - [anon_sym_SEMI] = ACTIONS(4784), - [anon_sym_LF] = ACTIONS(4782), - [anon_sym_AMP] = ACTIONS(4784), - }, - [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(2318), - [sym_string] = STATE(2317), - [sym_simple_expansion] = STATE(2317), - [sym_string_expansion] = STATE(2317), - [sym_expansion] = STATE(2317), - [sym_command_substitution] = STATE(2317), - [sym_process_substitution] = STATE(2317), - [anon_sym_RBRACE] = ACTIONS(5386), - [sym__special_characters] = ACTIONS(5388), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(5390), - [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(5390), - }, - [2123] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_EQ_TILDE] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2868), - }, - [2124] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5392), - }, - [2125] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5394), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2126] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_EQ_TILDE] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2876), - }, - [2127] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5396), - }, - [2128] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5398), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2129] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5400), - }, - [2130] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5386), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2131] = { - [sym_concatenation] = STATE(2325), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2325), + [aux_sym_expansion_repeat1] = STATE(2353), [anon_sym_RBRACE] = ACTIONS(5402), [anon_sym_EQ] = ACTIONS(5404), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(5406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(5408), [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2027] = { + [sym_concatenation] = STATE(2356), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2356), + [anon_sym_RBRACE] = ACTIONS(5410), + [anon_sym_EQ] = ACTIONS(5412), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(5416), + [anon_sym_COLON] = ACTIONS(5412), + [anon_sym_COLON_QMARK] = ACTIONS(5412), + [anon_sym_COLON_DASH] = ACTIONS(5412), + [anon_sym_PERCENT] = ACTIONS(5412), + [anon_sym_DASH] = ACTIONS(5412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2028] = { + [sym_concatenation] = STATE(2358), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2358), + [anon_sym_RBRACE] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(5418), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5420), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(5422), + [anon_sym_COLON] = ACTIONS(5418), + [anon_sym_COLON_QMARK] = ACTIONS(5418), + [anon_sym_COLON_DASH] = ACTIONS(5418), + [anon_sym_PERCENT] = ACTIONS(5418), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2029] = { + [sym_file_descriptor] = ACTIONS(1788), + [sym__concat] = ACTIONS(1788), + [anon_sym_esac] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_GT_GT] = ACTIONS(1788), + [anon_sym_AMP_GT] = ACTIONS(1790), + [anon_sym_AMP_GT_GT] = ACTIONS(1788), + [anon_sym_LT_AMP] = ACTIONS(1788), + [anon_sym_GT_AMP] = ACTIONS(1788), + [anon_sym_LT_LT] = ACTIONS(1790), + [anon_sym_LT_LT_DASH] = ACTIONS(1788), + [anon_sym_LT_LT_LT] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), + }, + [2030] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5424), + }, + [2031] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5426), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2032] = { + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [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(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1834), + [anon_sym_AMP_GT_GT] = ACTIONS(1832), + [anon_sym_LT_AMP] = ACTIONS(1832), + [anon_sym_GT_AMP] = ACTIONS(1832), + [anon_sym_LT_LT] = ACTIONS(1834), + [anon_sym_LT_LT_DASH] = ACTIONS(1832), + [anon_sym_LT_LT_LT] = ACTIONS(1832), + [anon_sym_BQUOTE] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [2033] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5428), + }, + [2034] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5430), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2035] = { + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1840), + [anon_sym_LT_AMP] = ACTIONS(1840), + [anon_sym_GT_AMP] = ACTIONS(1840), + [anon_sym_LT_LT] = ACTIONS(1842), + [anon_sym_LT_LT_DASH] = ACTIONS(1840), + [anon_sym_LT_LT_LT] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [2036] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5432), + }, + [2037] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2038] = { + [sym_file_descriptor] = ACTIONS(1846), + [sym__concat] = ACTIONS(1846), + [anon_sym_esac] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_SEMI_SEMI] = 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), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [2039] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5434), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2040] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5434), + [anon_sym_SEMI_SEMI] = ACTIONS(5436), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5438), + [anon_sym_LF] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(5438), + }, + [2041] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5434), + [anon_sym_SEMI_SEMI] = ACTIONS(5436), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5438), + [anon_sym_LF] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(5438), + }, + [2042] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(5434), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2043] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(5440), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(5434), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5442), + [anon_sym_LF] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + }, + [2044] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(5440), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(5434), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5442), + [anon_sym_LF] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(5442), + }, + [2045] = { + [sym_file_descriptor] = ACTIONS(1878), + [sym__concat] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1880), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + }, + [2046] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5444), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2047] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5444), + [anon_sym_SEMI_SEMI] = ACTIONS(5446), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5448), + [anon_sym_LF] = ACTIONS(5446), + [anon_sym_AMP] = ACTIONS(5448), + }, + [2048] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5444), + [anon_sym_SEMI_SEMI] = ACTIONS(5446), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5448), + [anon_sym_LF] = ACTIONS(5446), + [anon_sym_AMP] = ACTIONS(5448), + }, + [2049] = { + [sym__concat] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4885), + [anon_sym_EQ_TILDE] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4885), + }, + [2050] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4889), + [anon_sym_EQ_EQ] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4889), + [anon_sym_GT] = ACTIONS(4889), + [anon_sym_BANG_EQ] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4889), + }, + [2051] = { + [sym__concat] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4893), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4893), + }, + [2052] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5450), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2053] = { + [sym__concat] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4899), + [anon_sym_EQ_TILDE] = ACTIONS(4899), + [anon_sym_EQ_EQ] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4899), + [anon_sym_GT] = ACTIONS(4899), + [anon_sym_BANG_EQ] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4899), + }, + [2054] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5452), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2055] = { + [sym__concat] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4905), + [anon_sym_EQ_TILDE] = ACTIONS(4905), + [anon_sym_EQ_EQ] = ACTIONS(4905), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG_EQ] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4905), + }, + [2056] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5454), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2057] = { + [sym__concat] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4947), + [anon_sym_EQ_TILDE] = ACTIONS(4947), + [anon_sym_EQ_EQ] = ACTIONS(4947), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_BANG_EQ] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4947), + }, + [2058] = { + [sym__concat] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4955), + [anon_sym_EQ_TILDE] = ACTIONS(4955), + [anon_sym_EQ_EQ] = ACTIONS(4955), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG_EQ] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4955), + }, + [2059] = { + [sym__concat] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4959), + [anon_sym_EQ_TILDE] = ACTIONS(4959), + [anon_sym_EQ_EQ] = ACTIONS(4959), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG_EQ] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4959), + }, + [2060] = { + [sym__concat] = ACTIONS(4885), + [sym_variable_name] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4887), + [sym_word] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), + }, + [2061] = { + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), + }, + [2062] = { + [sym__concat] = ACTIONS(4893), + [sym_variable_name] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4893), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4895), + [sym_word] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), + }, + [2063] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5456), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2064] = { + [sym__concat] = ACTIONS(4899), + [sym_variable_name] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4901), + [sym_word] = ACTIONS(4901), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), + }, + [2065] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5458), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2066] = { + [sym__concat] = ACTIONS(4905), + [sym_variable_name] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4905), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4907), + [sym_word] = ACTIONS(4907), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), + }, + [2067] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5460), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2068] = { + [sym__concat] = ACTIONS(4947), + [sym_variable_name] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4947), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4949), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), + }, + [2069] = { + [sym__concat] = ACTIONS(4955), + [sym_variable_name] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4955), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4957), + [sym_word] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), + }, + [2070] = { + [sym__concat] = ACTIONS(4959), + [sym_variable_name] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4959), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4961), + [sym_word] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), + }, + [2071] = { + [sym__concat] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4887), + [sym_word] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), + }, + [2072] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), + }, + [2073] = { + [sym__concat] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4893), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4895), + [sym_word] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), + }, + [2074] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5462), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2075] = { + [sym__concat] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4901), + [sym_word] = ACTIONS(4901), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), + }, + [2076] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5464), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2077] = { + [sym__concat] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4905), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4907), + [sym_word] = ACTIONS(4907), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), + }, + [2078] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5466), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2079] = { + [sym__concat] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4947), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4949), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), + }, + [2080] = { + [sym__concat] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4955), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4957), + [sym_word] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), + }, + [2081] = { + [sym__concat] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4959), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4961), + [sym_word] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), + }, + [2082] = { + [sym_file_descriptor] = ACTIONS(4885), + [sym__concat] = ACTIONS(4885), + [sym_variable_name] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4887), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4885), + }, + [2083] = { + [sym_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4889), + }, + [2084] = { + [sym_file_descriptor] = ACTIONS(4893), + [sym__concat] = ACTIONS(4893), + [sym_variable_name] = ACTIONS(4893), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_AMP_GT] = ACTIONS(4895), + [anon_sym_AMP_GT_GT] = ACTIONS(4893), + [anon_sym_LT_AMP] = ACTIONS(4893), + [anon_sym_GT_AMP] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4893), + }, + [2085] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5468), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2086] = { + [sym_file_descriptor] = ACTIONS(4899), + [sym__concat] = ACTIONS(4899), + [sym_variable_name] = ACTIONS(4899), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_GT_GT] = ACTIONS(4899), + [anon_sym_AMP_GT] = ACTIONS(4901), + [anon_sym_AMP_GT_GT] = ACTIONS(4899), + [anon_sym_LT_AMP] = ACTIONS(4899), + [anon_sym_GT_AMP] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4899), + }, + [2087] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2088] = { + [sym_file_descriptor] = ACTIONS(4905), + [sym__concat] = ACTIONS(4905), + [sym_variable_name] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4907), + [anon_sym_GT] = ACTIONS(4907), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_AMP_GT] = ACTIONS(4907), + [anon_sym_AMP_GT_GT] = ACTIONS(4905), + [anon_sym_LT_AMP] = ACTIONS(4905), + [anon_sym_GT_AMP] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4905), + }, + [2089] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5472), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2090] = { + [sym_file_descriptor] = ACTIONS(4947), + [sym__concat] = ACTIONS(4947), + [sym_variable_name] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_AMP_GT] = ACTIONS(4949), + [anon_sym_AMP_GT_GT] = ACTIONS(4947), + [anon_sym_LT_AMP] = ACTIONS(4947), + [anon_sym_GT_AMP] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4947), + }, + [2091] = { + [sym_file_descriptor] = ACTIONS(4955), + [sym__concat] = ACTIONS(4955), + [sym_variable_name] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_AMP_GT] = ACTIONS(4957), + [anon_sym_AMP_GT_GT] = ACTIONS(4955), + [anon_sym_LT_AMP] = ACTIONS(4955), + [anon_sym_GT_AMP] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4955), + }, + [2092] = { + [sym_file_descriptor] = ACTIONS(4959), + [sym__concat] = ACTIONS(4959), + [sym_variable_name] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4961), + [anon_sym_GT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_AMP_GT] = ACTIONS(4961), + [anon_sym_AMP_GT_GT] = ACTIONS(4959), + [anon_sym_LT_AMP] = ACTIONS(4959), + [anon_sym_GT_AMP] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4959), + }, + [2093] = { + [sym__concat] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4887), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym__string_content] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4887), + [anon_sym_BQUOTE] = ACTIONS(4887), + [sym_comment] = ACTIONS(243), + }, + [2094] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym__string_content] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [sym_comment] = ACTIONS(243), + }, + [2095] = { + [sym__concat] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym__string_content] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [sym_comment] = ACTIONS(243), + }, + [2096] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2097] = { + [sym__concat] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym__string_content] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [sym_comment] = ACTIONS(243), + }, + [2098] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5476), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2099] = { + [sym__concat] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4907), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym__string_content] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4907), + [anon_sym_BQUOTE] = ACTIONS(4907), + [sym_comment] = ACTIONS(243), + }, + [2100] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5478), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2101] = { + [sym__concat] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4949), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym__string_content] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4949), + [anon_sym_BQUOTE] = ACTIONS(4949), + [sym_comment] = ACTIONS(243), + }, + [2102] = { + [sym__concat] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4957), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym__string_content] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4957), + [anon_sym_BQUOTE] = ACTIONS(4957), + [sym_comment] = ACTIONS(243), + }, + [2103] = { + [sym__concat] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym__string_content] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4961), + [anon_sym_BQUOTE] = ACTIONS(4961), + [sym_comment] = ACTIONS(243), + }, + [2104] = { + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_EQ] = ACTIONS(5480), + [sym__special_characters] = ACTIONS(5480), + [anon_sym_DQUOTE] = ACTIONS(4146), + [anon_sym_DOLLAR] = ACTIONS(5480), + [sym_raw_string] = ACTIONS(4146), + [anon_sym_POUND] = ACTIONS(4146), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4146), + [anon_sym_SLASH] = ACTIONS(4146), + [anon_sym_COLON] = ACTIONS(5480), + [anon_sym_COLON_QMARK] = ACTIONS(5480), + [anon_sym_COLON_DASH] = ACTIONS(5480), + [anon_sym_PERCENT] = ACTIONS(5480), + [anon_sym_DASH] = ACTIONS(5480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4146), + [anon_sym_BQUOTE] = ACTIONS(4146), + [anon_sym_LT_LPAREN] = ACTIONS(4146), + [anon_sym_GT_LPAREN] = ACTIONS(4146), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(5480), + }, + [2105] = { + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(5482), + [sym__special_characters] = ACTIONS(5482), + [anon_sym_DQUOTE] = ACTIONS(4148), + [anon_sym_DOLLAR] = ACTIONS(5482), + [sym_raw_string] = ACTIONS(4148), + [anon_sym_POUND] = ACTIONS(4148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(5482), + [anon_sym_COLON_QMARK] = ACTIONS(5482), + [anon_sym_COLON_DASH] = ACTIONS(5482), + [anon_sym_PERCENT] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4148), + [anon_sym_BQUOTE] = ACTIONS(4148), + [anon_sym_LT_LPAREN] = ACTIONS(4148), + [anon_sym_GT_LPAREN] = ACTIONS(4148), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(5482), + }, + [2106] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + }, + [2107] = { + [sym__concat] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + }, + [2108] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5484), + [sym_comment] = ACTIONS(53), + }, + [2109] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5486), + [sym_comment] = ACTIONS(53), + }, + [2110] = { + [anon_sym_RBRACE] = ACTIONS(5486), + [sym_comment] = ACTIONS(53), + }, + [2111] = { + [sym_concatenation] = STATE(2388), + [sym_string] = STATE(2387), + [sym_simple_expansion] = STATE(2387), + [sym_string_expansion] = STATE(2387), + [sym_expansion] = STATE(2387), + [sym_command_substitution] = STATE(2387), + [sym_process_substitution] = STATE(2387), + [anon_sym_RBRACE] = ACTIONS(5486), + [sym__special_characters] = ACTIONS(5488), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5490), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5490), + }, + [2112] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + }, + [2113] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5492), + }, + [2114] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5494), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2115] = { + [sym__concat] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + }, + [2116] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5496), + }, + [2117] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5498), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2118] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5500), + }, + [2119] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5486), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2120] = { + [sym_concatenation] = STATE(2395), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2395), + [anon_sym_RBRACE] = ACTIONS(5502), + [anon_sym_EQ] = ACTIONS(5504), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5504), + [anon_sym_COLON_QMARK] = ACTIONS(5504), + [anon_sym_COLON_DASH] = ACTIONS(5504), + [anon_sym_PERCENT] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2121] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + }, + [2122] = { + [sym_concatenation] = STATE(2397), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2397), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(5510), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5512), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5510), + [anon_sym_COLON_QMARK] = ACTIONS(5510), + [anon_sym_COLON_DASH] = ACTIONS(5510), + [anon_sym_PERCENT] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2123] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + }, + [2124] = { + [sym_concatenation] = STATE(2399), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2399), + [anon_sym_RBRACE] = ACTIONS(5514), + [anon_sym_EQ] = ACTIONS(5516), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5516), + [anon_sym_COLON_QMARK] = ACTIONS(5516), + [anon_sym_COLON_DASH] = ACTIONS(5516), + [anon_sym_PERCENT] = ACTIONS(5516), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2125] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_RBRACE] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + }, + [2126] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5520), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2127] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(5520), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2128] = { + [sym__concat] = ACTIONS(3078), + [anon_sym_RBRACE] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + }, + [2129] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5522), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2130] = { + [sym__simple_heredoc_body] = ACTIONS(5524), + [sym__heredoc_body_beginning] = ACTIONS(5524), + [sym_file_descriptor] = ACTIONS(5524), + [sym__concat] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_EQ_TILDE] = ACTIONS(5526), + [anon_sym_EQ_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5526), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_AMP_GT] = ACTIONS(5526), + [anon_sym_AMP_GT_GT] = ACTIONS(5524), + [anon_sym_LT_AMP] = ACTIONS(5524), + [anon_sym_GT_AMP] = ACTIONS(5524), + [anon_sym_LT_LT] = ACTIONS(5526), + [anon_sym_LT_LT_DASH] = ACTIONS(5524), + [anon_sym_LT_LT_LT] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5526), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), + }, + [2131] = { + [sym__simple_heredoc_body] = ACTIONS(5528), + [sym__heredoc_body_beginning] = ACTIONS(5528), + [sym_file_descriptor] = ACTIONS(5528), + [sym__concat] = ACTIONS(5528), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [anon_sym_EQ_TILDE] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5530), + [anon_sym_GT_GT] = ACTIONS(5528), + [anon_sym_AMP_GT] = ACTIONS(5530), + [anon_sym_AMP_GT_GT] = ACTIONS(5528), + [anon_sym_LT_AMP] = ACTIONS(5528), + [anon_sym_GT_AMP] = ACTIONS(5528), + [anon_sym_LT_LT] = ACTIONS(5530), + [anon_sym_LT_LT_DASH] = ACTIONS(5528), + [anon_sym_LT_LT_LT] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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(5530), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), }, [2132] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_EQ_TILDE] = ACTIONS(2948), - [anon_sym_EQ_EQ] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2948), - [anon_sym_GT] = ACTIONS(2948), - [anon_sym_BANG_EQ] = ACTIONS(2948), + [sym__simple_heredoc_body] = ACTIONS(5532), + [sym__heredoc_body_beginning] = ACTIONS(5532), + [sym_file_descriptor] = ACTIONS(5532), + [sym__concat] = ACTIONS(5532), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_RPAREN] = ACTIONS(5532), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [anon_sym_EQ_TILDE] = ACTIONS(5534), + [anon_sym_EQ_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5534), + [anon_sym_GT_GT] = ACTIONS(5532), + [anon_sym_AMP_GT] = ACTIONS(5534), + [anon_sym_AMP_GT_GT] = ACTIONS(5532), + [anon_sym_LT_AMP] = ACTIONS(5532), + [anon_sym_GT_AMP] = ACTIONS(5532), + [anon_sym_LT_LT] = ACTIONS(5534), + [anon_sym_LT_LT_DASH] = ACTIONS(5532), + [anon_sym_LT_LT_LT] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2948), + [sym_word] = ACTIONS(5534), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), }, [2133] = { - [sym_concatenation] = STATE(2327), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2327), - [anon_sym_RBRACE] = ACTIONS(5408), - [anon_sym_EQ] = ACTIONS(5410), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3903), + [anon_sym_EQ] = ACTIONS(3905), + [sym__special_characters] = ACTIONS(3905), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_POUND] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_COLON] = ACTIONS(3905), + [anon_sym_COLON_QMARK] = ACTIONS(3905), + [anon_sym_COLON_DASH] = ACTIONS(3905), + [anon_sym_PERCENT] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(3905), }, [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), + [sym__concat] = ACTIONS(3911), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_EQ] = ACTIONS(3913), + [sym__special_characters] = ACTIONS(3913), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3913), + [sym_raw_string] = ACTIONS(3911), + [anon_sym_POUND] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COLON_QMARK] = ACTIONS(3913), + [anon_sym_COLON_DASH] = ACTIONS(3913), + [anon_sym_PERCENT] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [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(243), + [sym_word] = ACTIONS(3913), }, [2135] = { - [sym_concatenation] = STATE(2329), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2329), - [anon_sym_RBRACE] = ACTIONS(5414), - [anon_sym_EQ] = ACTIONS(5416), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5418), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5536), + [sym_comment] = ACTIONS(53), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5538), [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), + [anon_sym_RBRACE] = ACTIONS(5538), [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), + [sym_concatenation] = STATE(2405), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2405), + [anon_sym_RBRACE] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(5542), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5542), + [anon_sym_COLON_QMARK] = ACTIONS(5542), + [anon_sym_COLON_DASH] = ACTIONS(5542), + [anon_sym_PERCENT] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(3975), + [anon_sym_RBRACE] = ACTIONS(3975), + [anon_sym_EQ] = ACTIONS(3977), + [sym__special_characters] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_POUND] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_DASH] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(3977), }, [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), + [sym_concatenation] = STATE(2407), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2407), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_EQ] = ACTIONS(5548), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5550), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5548), + [anon_sym_COLON_QMARK] = ACTIONS(5548), + [anon_sym_COLON_DASH] = ACTIONS(5548), + [anon_sym_PERCENT] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(3985), + [anon_sym_RBRACE] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [sym__special_characters] = ACTIONS(3987), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_POUND] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_COLON] = ACTIONS(3987), + [anon_sym_COLON_QMARK] = ACTIONS(3987), + [anon_sym_COLON_DASH] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(3987), }, [2142] = { - [sym__concat] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4722), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_SEMI_SEMI] = ACTIONS(4722), - [anon_sym_PIPE_AMP] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_EQ_TILDE] = ACTIONS(4722), - [anon_sym_EQ_EQ] = ACTIONS(4722), - [anon_sym_EQ] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4722), - [anon_sym_GT] = ACTIONS(4722), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LF] = ACTIONS(4720), - [anon_sym_AMP] = ACTIONS(4722), + [sym_concatenation] = STATE(2409), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2409), + [anon_sym_RBRACE] = ACTIONS(5552), + [anon_sym_EQ] = ACTIONS(5554), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5556), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5554), + [anon_sym_COLON_QMARK] = ACTIONS(5554), + [anon_sym_COLON_DASH] = ACTIONS(5554), + [anon_sym_PERCENT] = ACTIONS(5554), + [anon_sym_DASH] = ACTIONS(5554), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2143] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_esac] = ACTIONS(4726), - [anon_sym_PIPE] = ACTIONS(4726), - [anon_sym_SEMI_SEMI] = ACTIONS(4726), - [anon_sym_PIPE_AMP] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [anon_sym_EQ_TILDE] = ACTIONS(4726), - [anon_sym_EQ_EQ] = ACTIONS(4726), - [anon_sym_EQ] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4726), - [anon_sym_GT] = ACTIONS(4726), - [anon_sym_BANG_EQ] = ACTIONS(4726), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_LF] = ACTIONS(4724), - [anon_sym_AMP] = ACTIONS(4726), + [sym__concat] = ACTIONS(4040), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(4042), + [sym__special_characters] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_POUND] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_COLON] = ACTIONS(4042), + [anon_sym_COLON_QMARK] = ACTIONS(4042), + [anon_sym_COLON_DASH] = ACTIONS(4042), + [anon_sym_PERCENT] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4042), }, [2144] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4730), - [anon_sym_SEMI_SEMI] = ACTIONS(4730), - [anon_sym_PIPE_AMP] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_EQ_TILDE] = ACTIONS(4730), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4728), - [anon_sym_AMP] = ACTIONS(4730), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5558), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2145] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5428), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4062), + [anon_sym_RBRACE] = ACTIONS(4062), + [anon_sym_EQ] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_POUND] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_COLON] = ACTIONS(4064), + [anon_sym_COLON_QMARK] = ACTIONS(4064), + [anon_sym_COLON_DASH] = ACTIONS(4064), + [anon_sym_PERCENT] = ACTIONS(4064), + [anon_sym_DASH] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4064), }, [2146] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [anon_sym_PIPE] = ACTIONS(4736), - [anon_sym_SEMI_SEMI] = ACTIONS(4736), - [anon_sym_PIPE_AMP] = ACTIONS(4736), - [anon_sym_AMP_AMP] = ACTIONS(4736), - [anon_sym_PIPE_PIPE] = ACTIONS(4736), - [anon_sym_EQ_TILDE] = ACTIONS(4736), - [anon_sym_EQ_EQ] = ACTIONS(4736), - [anon_sym_EQ] = ACTIONS(4736), - [anon_sym_LT] = ACTIONS(4736), - [anon_sym_GT] = ACTIONS(4736), - [anon_sym_BANG_EQ] = ACTIONS(4736), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4734), - [anon_sym_AMP] = ACTIONS(4736), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5560), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2147] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5430), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4068), + [anon_sym_RBRACE] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_POUND] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_COLON] = ACTIONS(4070), + [anon_sym_COLON_QMARK] = ACTIONS(4070), + [anon_sym_COLON_DASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4070), }, [2148] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_esac] = ACTIONS(4742), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_SEMI_SEMI] = ACTIONS(4742), - [anon_sym_PIPE_AMP] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_EQ_TILDE] = ACTIONS(4742), - [anon_sym_EQ_EQ] = ACTIONS(4742), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_BANG_EQ] = ACTIONS(4742), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_LF] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), - }, - [2149] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5432), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2149] = { + [sym__concat] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4076), + [sym__special_characters] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_POUND] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_COLON] = ACTIONS(4076), + [anon_sym_COLON_QMARK] = ACTIONS(4076), + [anon_sym_COLON_DASH] = ACTIONS(4076), + [anon_sym_PERCENT] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4076), }, [2150] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_esac] = ACTIONS(4784), - [anon_sym_PIPE] = ACTIONS(4784), - [anon_sym_SEMI_SEMI] = ACTIONS(4784), - [anon_sym_PIPE_AMP] = 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(4784), - [anon_sym_LT] = ACTIONS(4784), - [anon_sym_GT] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4784), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4784), - [anon_sym_SEMI] = ACTIONS(4784), - [anon_sym_LF] = ACTIONS(4782), - [anon_sym_AMP] = ACTIONS(4784), + [sym__concat] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4100), + [sym__special_characters] = ACTIONS(4100), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_POUND] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_COLON] = ACTIONS(4100), + [anon_sym_COLON_QMARK] = ACTIONS(4100), + [anon_sym_COLON_DASH] = ACTIONS(4100), + [anon_sym_PERCENT] = ACTIONS(4100), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4100), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2153), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2153), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), }, [2153] = { - [sym_do_group] = STATE(2335), - [sym_compound_statement] = STATE(2335), - [anon_sym_do] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(3252), + [aux_sym_concatenation_repeat1] = STATE(2413), + [sym__concat] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [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), + [aux_sym_concatenation_repeat1] = STATE(2156), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(981), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5436), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), }, [2155] = { - [sym_do_group] = STATE(2338), - [anon_sym_do] = ACTIONS(389), + [aux_sym_concatenation_repeat1] = STATE(2156), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), }, [2156] = { - [sym_compound_statement] = STATE(2340), - [anon_sym_LPAREN] = ACTIONS(5438), - [anon_sym_LBRACE] = ACTIONS(435), + [aux_sym_concatenation_repeat1] = STATE(2414), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [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__heredoc_body_middle] = ACTIONS(3903), + [sym__heredoc_body_end] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), [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__heredoc_body_middle] = ACTIONS(3911), + [sym__heredoc_body_end] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), [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), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5564), [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), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5566), + [sym_comment] = ACTIONS(53), }, [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), + [anon_sym_RBRACE] = ACTIONS(5566), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(2418), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2418), + [anon_sym_RBRACE] = ACTIONS(5568), + [anon_sym_EQ] = ACTIONS(5570), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5570), + [anon_sym_COLON_QMARK] = ACTIONS(5570), + [anon_sym_COLON_DASH] = ACTIONS(5570), + [anon_sym_PERCENT] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__heredoc_body_middle] = ACTIONS(3975), + [sym__heredoc_body_end] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), }, [2164] = { - [sym_subscript] = STATE(2355), - [sym_variable_name] = ACTIONS(5460), - [anon_sym_BANG] = ACTIONS(5462), - [anon_sym_DOLLAR] = ACTIONS(5464), - [anon_sym_POUND] = ACTIONS(5462), - [anon_sym_DASH] = ACTIONS(5464), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5466), - [anon_sym_STAR] = ACTIONS(5464), - [anon_sym_AT] = ACTIONS(5464), - [anon_sym_QMARK] = ACTIONS(5464), - [anon_sym_0] = ACTIONS(5468), - [anon_sym__] = ACTIONS(5468), + [sym_concatenation] = STATE(2420), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2420), + [anon_sym_RBRACE] = ACTIONS(5574), + [anon_sym_EQ] = ACTIONS(5576), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5578), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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(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__heredoc_body_middle] = ACTIONS(3985), + [sym__heredoc_body_end] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(107), }, [2166] = { - [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(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(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), + [sym_concatenation] = STATE(2422), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2422), + [anon_sym_RBRACE] = ACTIONS(5580), + [anon_sym_EQ] = ACTIONS(5582), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5584), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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__heredoc_body_middle] = ACTIONS(4040), + [sym__heredoc_body_end] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5586), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2169] = { - [anon_sym_EQ] = ACTIONS(5442), - [anon_sym_PLUS_EQ] = ACTIONS(5442), + [sym__heredoc_body_middle] = ACTIONS(4062), + [sym__heredoc_body_end] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5588), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__heredoc_body_middle] = ACTIONS(4068), + [sym__heredoc_body_end] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5590), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(3903), + [anon_sym_RPAREN] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3903), }, [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), + [sym__concat] = ACTIONS(3911), + [anon_sym_RPAREN] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3913), + [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(53), + [sym_word] = ACTIONS(3911), }, [2175] = { - [sym_subscript] = STATE(2378), - [sym_variable_name] = ACTIONS(5486), - [anon_sym_BANG] = ACTIONS(5488), - [anon_sym_DOLLAR] = ACTIONS(5490), - [anon_sym_POUND] = ACTIONS(5488), - [anon_sym_DASH] = ACTIONS(5490), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5492), - [anon_sym_STAR] = ACTIONS(5490), - [anon_sym_AT] = ACTIONS(5490), - [anon_sym_QMARK] = ACTIONS(5490), - [anon_sym_0] = ACTIONS(5494), - [anon_sym__] = ACTIONS(5494), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5592), + [sym_comment] = ACTIONS(53), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5594), [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), + [anon_sym_RBRACE] = ACTIONS(5594), [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), + [sym_concatenation] = STATE(2429), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2429), + [anon_sym_RBRACE] = ACTIONS(5596), + [anon_sym_EQ] = ACTIONS(5598), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(3975), + [anon_sym_RPAREN] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3975), }, [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), + [sym_concatenation] = STATE(2431), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2431), + [anon_sym_RBRACE] = ACTIONS(5602), + [anon_sym_EQ] = ACTIONS(5604), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5606), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(3985), + [anon_sym_RPAREN] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3985), }, [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_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), - }, - [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(5282), - [anon_sym_in] = ACTIONS(5284), - [anon_sym_SEMI_SEMI] = ACTIONS(5284), - [sym__special_characters] = ACTIONS(5284), - [anon_sym_DQUOTE] = ACTIONS(5284), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), - [anon_sym_BQUOTE] = ACTIONS(5284), - [anon_sym_LT_LPAREN] = ACTIONS(5284), - [anon_sym_GT_LPAREN] = ACTIONS(5284), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5284), - [anon_sym_SEMI] = ACTIONS(5284), - [anon_sym_LF] = ACTIONS(5282), - [anon_sym_AMP] = ACTIONS(5284), - }, - [2212] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_in] = ACTIONS(5288), - [anon_sym_SEMI_SEMI] = ACTIONS(5288), - [sym__special_characters] = ACTIONS(5288), - [anon_sym_DQUOTE] = ACTIONS(5288), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym_raw_string] = ACTIONS(5288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), - [anon_sym_BQUOTE] = ACTIONS(5288), - [anon_sym_LT_LPAREN] = ACTIONS(5288), - [anon_sym_GT_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5288), - [anon_sym_SEMI] = ACTIONS(5288), - [anon_sym_LF] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5288), - }, - [2213] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_in] = ACTIONS(5292), - [anon_sym_SEMI_SEMI] = ACTIONS(5292), - [sym__special_characters] = ACTIONS(5292), - [anon_sym_DQUOTE] = ACTIONS(5292), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym_raw_string] = ACTIONS(5292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), - [anon_sym_BQUOTE] = ACTIONS(5292), - [anon_sym_LT_LPAREN] = ACTIONS(5292), - [anon_sym_GT_LPAREN] = ACTIONS(5292), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5292), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LF] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5292), - }, - [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(5282), - [anon_sym_AMP_AMP] = ACTIONS(5282), - [anon_sym_PIPE_PIPE] = ACTIONS(5282), - [anon_sym_RBRACK] = ACTIONS(5282), - [anon_sym_EQ_TILDE] = ACTIONS(5282), - [anon_sym_EQ_EQ] = ACTIONS(5282), - [anon_sym_EQ] = ACTIONS(5284), - [anon_sym_LT] = ACTIONS(5282), - [anon_sym_GT] = ACTIONS(5282), - [anon_sym_BANG_EQ] = ACTIONS(5282), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5282), - }, - [2217] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_AMP_AMP] = ACTIONS(5286), - [anon_sym_PIPE_PIPE] = ACTIONS(5286), - [anon_sym_RBRACK] = ACTIONS(5286), - [anon_sym_EQ_TILDE] = ACTIONS(5286), - [anon_sym_EQ_EQ] = ACTIONS(5286), - [anon_sym_EQ] = ACTIONS(5288), - [anon_sym_LT] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5286), - [anon_sym_BANG_EQ] = ACTIONS(5286), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5286), - }, - [2218] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_AMP_AMP] = ACTIONS(5290), - [anon_sym_PIPE_PIPE] = ACTIONS(5290), - [anon_sym_RBRACK] = ACTIONS(5290), - [anon_sym_EQ_TILDE] = ACTIONS(5290), - [anon_sym_EQ_EQ] = ACTIONS(5290), - [anon_sym_EQ] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5290), - [anon_sym_GT] = ACTIONS(5290), - [anon_sym_BANG_EQ] = ACTIONS(5290), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5290), - }, - [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(2426), - [sym_string] = STATE(2425), - [sym_simple_expansion] = STATE(2425), - [sym_string_expansion] = STATE(2425), - [sym_expansion] = STATE(2425), - [sym_command_substitution] = STATE(2425), - [sym_process_substitution] = STATE(2425), - [anon_sym_RBRACE] = ACTIONS(5552), - [sym__special_characters] = ACTIONS(5554), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(5556), - [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(5556), - }, - [2225] = { - [sym_file_descriptor] = ACTIONS(2868), - [sym__concat] = ACTIONS(2868), - [anon_sym_esac] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_GT] = ACTIONS(2870), - [anon_sym_AMP_GT_GT] = ACTIONS(2870), - [anon_sym_LT_AMP] = ACTIONS(2870), - [anon_sym_GT_AMP] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_LT_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT_LT] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - }, - [2226] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5558), - }, - [2227] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5560), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2228] = { - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [anon_sym_esac] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [anon_sym_PIPE_AMP] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2878), - [anon_sym_LT_AMP] = ACTIONS(2878), - [anon_sym_GT_AMP] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_LT_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT_LT] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [2229] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5562), - }, - [2230] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5564), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2231] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5566), - }, - [2232] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5552), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2233] = { [sym_concatenation] = STATE(2433), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -60993,1672 +60468,1317 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2433), - [anon_sym_RBRACE] = ACTIONS(5568), - [anon_sym_EQ] = ACTIONS(5570), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5570), - [anon_sym_COLON_QMARK] = ACTIONS(5570), - [anon_sym_COLON_DASH] = ACTIONS(5570), - [anon_sym_PERCENT] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(5608), + [anon_sym_EQ] = ACTIONS(5610), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5612), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2183] = { + [sym__concat] = ACTIONS(4040), + [anon_sym_RPAREN] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4040), + }, + [2184] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5614), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2185] = { + [sym__concat] = ACTIONS(4062), + [anon_sym_RPAREN] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4062), + }, + [2186] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2187] = { + [sym__concat] = ACTIONS(4068), + [anon_sym_RPAREN] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4068), + }, + [2188] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5618), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2189] = { + [sym__concat] = ACTIONS(4074), + [anon_sym_RPAREN] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4074), + }, + [2190] = { + [sym__concat] = ACTIONS(4098), + [anon_sym_RPAREN] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4098), + }, + [2191] = { + [sym_file_descriptor] = ACTIONS(4885), + [sym__concat] = ACTIONS(4885), + [sym_variable_name] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4887), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), + }, + [2192] = { + [sym_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), + }, + [2193] = { + [sym_file_descriptor] = ACTIONS(4893), + [sym__concat] = ACTIONS(4893), + [sym_variable_name] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4893), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_AMP_GT] = ACTIONS(4895), + [anon_sym_AMP_GT_GT] = ACTIONS(4893), + [anon_sym_LT_AMP] = ACTIONS(4893), + [anon_sym_GT_AMP] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), + }, + [2194] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2195] = { + [sym_file_descriptor] = ACTIONS(4899), + [sym__concat] = ACTIONS(4899), + [sym_variable_name] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_GT_GT] = ACTIONS(4899), + [anon_sym_AMP_GT] = ACTIONS(4901), + [anon_sym_AMP_GT_GT] = ACTIONS(4899), + [anon_sym_LT_AMP] = ACTIONS(4899), + [anon_sym_GT_AMP] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4901), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), + }, + [2196] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2197] = { + [sym_file_descriptor] = ACTIONS(4905), + [sym__concat] = ACTIONS(4905), + [sym_variable_name] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4905), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4907), + [anon_sym_GT] = ACTIONS(4907), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_AMP_GT] = ACTIONS(4907), + [anon_sym_AMP_GT_GT] = ACTIONS(4905), + [anon_sym_LT_AMP] = ACTIONS(4905), + [anon_sym_GT_AMP] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4907), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), + }, + [2198] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2199] = { + [sym_file_descriptor] = ACTIONS(4947), + [sym__concat] = ACTIONS(4947), + [sym_variable_name] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4947), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_AMP_GT] = ACTIONS(4949), + [anon_sym_AMP_GT_GT] = ACTIONS(4947), + [anon_sym_LT_AMP] = ACTIONS(4947), + [anon_sym_GT_AMP] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), + }, + [2200] = { + [sym_file_descriptor] = ACTIONS(4955), + [sym__concat] = ACTIONS(4955), + [sym_variable_name] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4955), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_AMP_GT] = ACTIONS(4957), + [anon_sym_AMP_GT_GT] = ACTIONS(4955), + [anon_sym_LT_AMP] = ACTIONS(4955), + [anon_sym_GT_AMP] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), + }, + [2201] = { + [sym_file_descriptor] = ACTIONS(4959), + [sym__concat] = ACTIONS(4959), + [sym_variable_name] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4959), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4961), + [anon_sym_GT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_AMP_GT] = ACTIONS(4961), + [anon_sym_AMP_GT_GT] = ACTIONS(4959), + [anon_sym_LT_AMP] = ACTIONS(4959), + [anon_sym_GT_AMP] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), + }, + [2202] = { + [anon_sym_esac] = ACTIONS(3569), + [anon_sym_PIPE] = ACTIONS(3571), + [anon_sym_RPAREN] = ACTIONS(3569), + [anon_sym_SEMI_SEMI] = ACTIONS(3569), + [anon_sym_PIPE_AMP] = ACTIONS(3569), + [anon_sym_AMP_AMP] = ACTIONS(3569), + [anon_sym_PIPE_PIPE] = ACTIONS(3569), + [anon_sym_BQUOTE] = ACTIONS(3569), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3571), + [anon_sym_LF] = ACTIONS(3569), + [anon_sym_AMP] = ACTIONS(3571), + }, + [2203] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_EQ_TILDE] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2855), + }, + [2204] = { + [sym__concat] = ACTIONS(2869), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_EQ_TILDE] = ACTIONS(2869), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_GT] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2869), + }, + [2205] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5626), + [sym_comment] = ACTIONS(53), + }, + [2206] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5628), + [sym_comment] = ACTIONS(53), + }, + [2207] = { + [anon_sym_RBRACE] = ACTIONS(5628), + [sym_comment] = ACTIONS(53), + }, + [2208] = { + [sym_concatenation] = STATE(2444), + [sym_string] = STATE(2443), + [sym_simple_expansion] = STATE(2443), + [sym_string_expansion] = STATE(2443), + [sym_expansion] = STATE(2443), + [sym_command_substitution] = STATE(2443), + [sym_process_substitution] = STATE(2443), + [anon_sym_RBRACE] = ACTIONS(5628), + [sym__special_characters] = ACTIONS(5630), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5632), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5632), + }, + [2209] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_EQ_TILDE] = ACTIONS(2905), + [anon_sym_EQ_EQ] = ACTIONS(2905), + [anon_sym_EQ] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_BANG_EQ] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2905), + }, + [2210] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5634), + }, + [2211] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2212] = { + [sym__concat] = ACTIONS(2913), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_EQ_TILDE] = ACTIONS(2913), + [anon_sym_EQ_EQ] = ACTIONS(2913), + [anon_sym_EQ] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_GT] = ACTIONS(2913), + [anon_sym_BANG_EQ] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2913), + }, + [2213] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5638), + }, + [2214] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2215] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5642), + }, + [2216] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5628), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2217] = { + [sym_concatenation] = STATE(2451), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2451), + [anon_sym_RBRACE] = ACTIONS(5644), + [anon_sym_EQ] = ACTIONS(5646), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5646), + [anon_sym_COLON_QMARK] = ACTIONS(5646), + [anon_sym_COLON_DASH] = ACTIONS(5646), + [anon_sym_PERCENT] = ACTIONS(5646), + [anon_sym_DASH] = ACTIONS(5646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2218] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_EQ_TILDE] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_EQ] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2985), + }, + [2219] = { + [sym_concatenation] = STATE(2453), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2453), + [anon_sym_RBRACE] = ACTIONS(5650), + [anon_sym_EQ] = ACTIONS(5652), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5652), + [anon_sym_COLON_QMARK] = ACTIONS(5652), + [anon_sym_COLON_DASH] = ACTIONS(5652), + [anon_sym_PERCENT] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2220] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_EQ_TILDE] = ACTIONS(3030), + [anon_sym_EQ_EQ] = ACTIONS(3030), + [anon_sym_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_GT] = ACTIONS(3030), + [anon_sym_BANG_EQ] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3030), + }, + [2221] = { + [sym_concatenation] = STATE(2455), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2455), + [anon_sym_RBRACE] = ACTIONS(5656), + [anon_sym_EQ] = ACTIONS(5658), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5660), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5658), + [anon_sym_COLON_QMARK] = ACTIONS(5658), + [anon_sym_COLON_DASH] = ACTIONS(5658), + [anon_sym_PERCENT] = ACTIONS(5658), + [anon_sym_DASH] = ACTIONS(5658), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2222] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_EQ_TILDE] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3040), + }, + [2223] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5662), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2224] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(5662), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2225] = { + [sym__concat] = ACTIONS(3078), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_EQ_TILDE] = ACTIONS(3078), + [anon_sym_EQ_EQ] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3078), + }, + [2226] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5664), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2227] = { + [anon_sym_esac] = ACTIONS(5666), + [anon_sym_PIPE] = ACTIONS(5668), + [anon_sym_RPAREN] = ACTIONS(5666), + [anon_sym_SEMI_SEMI] = ACTIONS(5666), + [anon_sym_PIPE_AMP] = ACTIONS(5666), + [anon_sym_AMP_AMP] = ACTIONS(5666), + [anon_sym_PIPE_PIPE] = ACTIONS(5666), + [anon_sym_BQUOTE] = ACTIONS(5666), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5668), + [anon_sym_LF] = ACTIONS(5666), + [anon_sym_AMP] = ACTIONS(5668), + }, + [2228] = { + [sym__concat] = ACTIONS(4885), + [anon_sym_esac] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_EQ_TILDE] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), + }, + [2229] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4889), + [anon_sym_EQ_EQ] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4889), + [anon_sym_GT] = ACTIONS(4889), + [anon_sym_BANG_EQ] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4889), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), + }, + [2230] = { + [sym__concat] = ACTIONS(4893), + [anon_sym_esac] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4893), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), + }, + [2231] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5670), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2232] = { + [sym__concat] = ACTIONS(4899), + [anon_sym_esac] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [anon_sym_EQ_TILDE] = ACTIONS(4899), + [anon_sym_EQ_EQ] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4899), + [anon_sym_GT] = ACTIONS(4899), + [anon_sym_BANG_EQ] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4899), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), + }, + [2233] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5672), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2234] = { - [sym_file_descriptor] = ACTIONS(2948), - [sym__concat] = ACTIONS(2948), - [anon_sym_esac] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2950), - [anon_sym_PIPE_AMP] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2950), - [anon_sym_AMP_GT] = ACTIONS(2950), - [anon_sym_AMP_GT_GT] = ACTIONS(2950), - [anon_sym_LT_AMP] = ACTIONS(2950), - [anon_sym_GT_AMP] = ACTIONS(2950), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_LT_LT_DASH] = ACTIONS(2950), - [anon_sym_LT_LT_LT] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), + [sym__concat] = ACTIONS(4905), + [anon_sym_esac] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [anon_sym_EQ_TILDE] = ACTIONS(4905), + [anon_sym_EQ_EQ] = ACTIONS(4905), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG_EQ] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4905), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), }, [2235] = { - [sym_concatenation] = STATE(2435), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2435), - [anon_sym_RBRACE] = ACTIONS(5574), - [anon_sym_EQ] = ACTIONS(5576), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5578), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(4947), + [anon_sym_esac] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_EQ_TILDE] = ACTIONS(4947), + [anon_sym_EQ_EQ] = ACTIONS(4947), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_BANG_EQ] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4947), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), }, [2237] = { - [sym_concatenation] = STATE(2437), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2437), - [anon_sym_RBRACE] = ACTIONS(5580), - [anon_sym_EQ] = ACTIONS(5582), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5584), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4955), + [anon_sym_esac] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_EQ_TILDE] = ACTIONS(4955), + [anon_sym_EQ_EQ] = ACTIONS(4955), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG_EQ] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4955), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), }, [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), + [sym__concat] = ACTIONS(4959), + [anon_sym_esac] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_EQ_TILDE] = ACTIONS(4959), + [anon_sym_EQ_EQ] = ACTIONS(4959), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG_EQ] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4959), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), }, [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_do_group] = STATE(2461), + [sym_compound_statement] = STATE(2461), + [anon_sym_do] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(3292), [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__concat] = ACTIONS(3903), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_word] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3903), }, [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), + [sym__concat] = ACTIONS(3911), + [anon_sym_SEMI_SEMI] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [anon_sym_DOLLAR] = ACTIONS(3913), + [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(53), + [sym_word] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3911), }, [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), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5676), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), }, [2243] = { - [sym__concat] = ACTIONS(5282), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_RPAREN] = ACTIONS(5282), - [anon_sym_AMP_AMP] = ACTIONS(5282), - [anon_sym_PIPE_PIPE] = ACTIONS(5282), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5282), - [anon_sym_EQ_TILDE] = ACTIONS(5282), - [anon_sym_EQ_EQ] = ACTIONS(5282), - [anon_sym_EQ] = ACTIONS(5284), - [anon_sym_LT] = ACTIONS(5282), - [anon_sym_GT] = ACTIONS(5282), - [anon_sym_BANG_EQ] = ACTIONS(5282), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5678), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5282), }, [2244] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_PIPE] = ACTIONS(5288), - [anon_sym_RPAREN] = ACTIONS(5286), - [anon_sym_AMP_AMP] = ACTIONS(5286), - [anon_sym_PIPE_PIPE] = ACTIONS(5286), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5286), - [anon_sym_EQ_TILDE] = ACTIONS(5286), - [anon_sym_EQ_EQ] = ACTIONS(5286), - [anon_sym_EQ] = ACTIONS(5288), - [anon_sym_LT] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5286), - [anon_sym_BANG_EQ] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5678), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5286), }, [2245] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_PIPE] = ACTIONS(5292), - [anon_sym_RPAREN] = ACTIONS(5290), - [anon_sym_AMP_AMP] = ACTIONS(5290), - [anon_sym_PIPE_PIPE] = ACTIONS(5290), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5290), - [anon_sym_EQ_TILDE] = ACTIONS(5290), - [anon_sym_EQ_EQ] = ACTIONS(5290), - [anon_sym_EQ] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5290), - [anon_sym_GT] = ACTIONS(5290), - [anon_sym_BANG_EQ] = ACTIONS(5290), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5290), - }, - [2246] = { - [sym__concat] = ACTIONS(5282), - [sym_variable_name] = ACTIONS(5282), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_RPAREN] = ACTIONS(5284), - [anon_sym_SEMI_SEMI] = ACTIONS(5284), - [anon_sym_PIPE_AMP] = ACTIONS(5284), - [anon_sym_AMP_AMP] = ACTIONS(5284), - [anon_sym_PIPE_PIPE] = ACTIONS(5284), - [sym__special_characters] = ACTIONS(5284), - [anon_sym_DQUOTE] = ACTIONS(5284), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), - [anon_sym_BQUOTE] = ACTIONS(5284), - [anon_sym_LT_LPAREN] = ACTIONS(5284), - [anon_sym_GT_LPAREN] = ACTIONS(5284), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5284), - [sym_word] = ACTIONS(5284), - [anon_sym_SEMI] = ACTIONS(5284), - [anon_sym_LF] = ACTIONS(5282), - [anon_sym_AMP] = ACTIONS(5284), - }, - [2247] = { - [sym__concat] = ACTIONS(5286), - [sym_variable_name] = ACTIONS(5286), - [anon_sym_PIPE] = ACTIONS(5288), - [anon_sym_RPAREN] = ACTIONS(5288), - [anon_sym_SEMI_SEMI] = ACTIONS(5288), - [anon_sym_PIPE_AMP] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [sym__special_characters] = ACTIONS(5288), - [anon_sym_DQUOTE] = ACTIONS(5288), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym_raw_string] = ACTIONS(5288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), - [anon_sym_BQUOTE] = ACTIONS(5288), - [anon_sym_LT_LPAREN] = ACTIONS(5288), - [anon_sym_GT_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5288), - [sym_word] = ACTIONS(5288), - [anon_sym_SEMI] = ACTIONS(5288), - [anon_sym_LF] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5288), - }, - [2248] = { - [sym__concat] = ACTIONS(5290), - [sym_variable_name] = ACTIONS(5290), - [anon_sym_PIPE] = ACTIONS(5292), - [anon_sym_RPAREN] = ACTIONS(5292), - [anon_sym_SEMI_SEMI] = ACTIONS(5292), - [anon_sym_PIPE_AMP] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [sym__special_characters] = ACTIONS(5292), - [anon_sym_DQUOTE] = ACTIONS(5292), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym_raw_string] = ACTIONS(5292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), - [anon_sym_BQUOTE] = ACTIONS(5292), - [anon_sym_LT_LPAREN] = ACTIONS(5292), - [anon_sym_GT_LPAREN] = ACTIONS(5292), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5292), - [sym_word] = ACTIONS(5292), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LF] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5292), - }, - [2249] = { - [sym__concat] = ACTIONS(5282), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_RPAREN] = ACTIONS(5284), - [anon_sym_SEMI_SEMI] = ACTIONS(5284), - [anon_sym_PIPE_AMP] = ACTIONS(5284), - [anon_sym_AMP_AMP] = ACTIONS(5284), - [anon_sym_PIPE_PIPE] = ACTIONS(5284), - [sym__special_characters] = ACTIONS(5284), - [anon_sym_DQUOTE] = ACTIONS(5284), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), - [anon_sym_BQUOTE] = ACTIONS(5284), - [anon_sym_LT_LPAREN] = ACTIONS(5284), - [anon_sym_GT_LPAREN] = ACTIONS(5284), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5284), - [sym_word] = ACTIONS(5284), - [anon_sym_SEMI] = ACTIONS(5284), - [anon_sym_LF] = ACTIONS(5282), - [anon_sym_AMP] = ACTIONS(5284), - }, - [2250] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_PIPE] = ACTIONS(5288), - [anon_sym_RPAREN] = ACTIONS(5288), - [anon_sym_SEMI_SEMI] = ACTIONS(5288), - [anon_sym_PIPE_AMP] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [sym__special_characters] = ACTIONS(5288), - [anon_sym_DQUOTE] = ACTIONS(5288), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym_raw_string] = ACTIONS(5288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), - [anon_sym_BQUOTE] = ACTIONS(5288), - [anon_sym_LT_LPAREN] = ACTIONS(5288), - [anon_sym_GT_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5288), - [sym_word] = ACTIONS(5288), - [anon_sym_SEMI] = ACTIONS(5288), - [anon_sym_LF] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5288), - }, - [2251] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_PIPE] = ACTIONS(5292), - [anon_sym_RPAREN] = ACTIONS(5292), - [anon_sym_SEMI_SEMI] = ACTIONS(5292), - [anon_sym_PIPE_AMP] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [sym__special_characters] = ACTIONS(5292), - [anon_sym_DQUOTE] = ACTIONS(5292), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym_raw_string] = ACTIONS(5292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), - [anon_sym_BQUOTE] = ACTIONS(5292), - [anon_sym_LT_LPAREN] = ACTIONS(5292), - [anon_sym_GT_LPAREN] = ACTIONS(5292), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5292), - [sym_word] = ACTIONS(5292), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LF] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5292), - }, - [2252] = { - [sym_file_descriptor] = ACTIONS(5282), - [sym__concat] = ACTIONS(5282), - [sym_variable_name] = ACTIONS(5282), - [anon_sym_LT] = ACTIONS(5284), - [anon_sym_GT] = ACTIONS(5284), - [anon_sym_GT_GT] = ACTIONS(5282), - [anon_sym_AMP_GT] = ACTIONS(5284), - [anon_sym_AMP_GT_GT] = ACTIONS(5282), - [anon_sym_LT_AMP] = ACTIONS(5282), - [anon_sym_GT_AMP] = ACTIONS(5282), - [sym__special_characters] = ACTIONS(5282), - [anon_sym_DQUOTE] = ACTIONS(5282), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5282), - [anon_sym_BQUOTE] = ACTIONS(5282), - [anon_sym_LT_LPAREN] = ACTIONS(5282), - [anon_sym_GT_LPAREN] = ACTIONS(5282), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5282), - }, - [2253] = { - [sym_file_descriptor] = ACTIONS(5286), - [sym__concat] = ACTIONS(5286), - [sym_variable_name] = ACTIONS(5286), - [anon_sym_LT] = ACTIONS(5288), - [anon_sym_GT] = ACTIONS(5288), - [anon_sym_GT_GT] = ACTIONS(5286), - [anon_sym_AMP_GT] = ACTIONS(5288), - [anon_sym_AMP_GT_GT] = ACTIONS(5286), - [anon_sym_LT_AMP] = ACTIONS(5286), - [anon_sym_GT_AMP] = ACTIONS(5286), - [sym__special_characters] = ACTIONS(5286), - [anon_sym_DQUOTE] = ACTIONS(5286), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym_raw_string] = ACTIONS(5286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5286), - [anon_sym_BQUOTE] = ACTIONS(5286), - [anon_sym_LT_LPAREN] = ACTIONS(5286), - [anon_sym_GT_LPAREN] = ACTIONS(5286), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5286), - }, - [2254] = { - [sym_file_descriptor] = ACTIONS(5290), - [sym__concat] = ACTIONS(5290), - [sym_variable_name] = ACTIONS(5290), - [anon_sym_LT] = ACTIONS(5292), - [anon_sym_GT] = ACTIONS(5292), - [anon_sym_GT_GT] = ACTIONS(5290), - [anon_sym_AMP_GT] = ACTIONS(5292), - [anon_sym_AMP_GT_GT] = ACTIONS(5290), - [anon_sym_LT_AMP] = ACTIONS(5290), - [anon_sym_GT_AMP] = ACTIONS(5290), - [sym__special_characters] = ACTIONS(5290), - [anon_sym_DQUOTE] = ACTIONS(5290), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym_raw_string] = ACTIONS(5290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5290), - [anon_sym_BQUOTE] = ACTIONS(5290), - [anon_sym_LT_LPAREN] = ACTIONS(5290), - [anon_sym_GT_LPAREN] = ACTIONS(5290), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5290), - }, - [2255] = { - [sym__concat] = ACTIONS(5282), - [anon_sym_DQUOTE] = ACTIONS(5284), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym__string_content] = ACTIONS(5282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), - [anon_sym_BQUOTE] = ACTIONS(5284), - [sym_comment] = ACTIONS(179), - }, - [2256] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_DQUOTE] = ACTIONS(5288), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym__string_content] = ACTIONS(5286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), - [anon_sym_BQUOTE] = ACTIONS(5288), - [sym_comment] = ACTIONS(179), - }, - [2257] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_DQUOTE] = ACTIONS(5292), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym__string_content] = ACTIONS(5290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), - [anon_sym_BQUOTE] = ACTIONS(5292), - [sym_comment] = ACTIONS(179), - }, - [2258] = { - [sym__concat] = ACTIONS(3802), - [anon_sym_RBRACE] = ACTIONS(3802), - [sym_comment] = ACTIONS(53), - }, - [2259] = { - [sym__concat] = ACTIONS(3810), - [anon_sym_RBRACE] = ACTIONS(3810), - [sym_comment] = ACTIONS(53), - }, - [2260] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5590), - [sym_comment] = ACTIONS(53), - }, - [2261] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5592), - [sym_comment] = ACTIONS(53), - }, - [2262] = { - [anon_sym_RBRACE] = ACTIONS(5592), - [sym_comment] = ACTIONS(53), - }, - [2263] = { - [sym_concatenation] = STATE(2443), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2443), - [anon_sym_RBRACE] = ACTIONS(5594), - [anon_sym_EQ] = ACTIONS(5596), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5596), - [anon_sym_COLON_QMARK] = ACTIONS(5596), - [anon_sym_COLON_DASH] = ACTIONS(5596), - [anon_sym_PERCENT] = ACTIONS(5596), - [anon_sym_DASH] = ACTIONS(5596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2264] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_RBRACE] = ACTIONS(3874), - [sym_comment] = ACTIONS(53), - }, - [2265] = { - [sym_concatenation] = STATE(2445), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2445), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_EQ] = ACTIONS(5602), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5604), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5602), - [anon_sym_COLON_QMARK] = ACTIONS(5602), - [anon_sym_COLON_DASH] = ACTIONS(5602), - [anon_sym_PERCENT] = ACTIONS(5602), - [anon_sym_DASH] = ACTIONS(5602), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2266] = { - [sym__concat] = ACTIONS(3884), - [anon_sym_RBRACE] = ACTIONS(3884), - [sym_comment] = ACTIONS(53), - }, - [2267] = { - [sym_concatenation] = STATE(2447), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2447), - [anon_sym_RBRACE] = ACTIONS(5606), - [anon_sym_EQ] = ACTIONS(5608), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5608), - [anon_sym_COLON_QMARK] = ACTIONS(5608), - [anon_sym_COLON_DASH] = ACTIONS(5608), - [anon_sym_PERCENT] = ACTIONS(5608), - [anon_sym_DASH] = ACTIONS(5608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2268] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_RBRACE] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - }, - [2269] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5612), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2270] = { - [sym__concat] = ACTIONS(3965), - [anon_sym_RBRACE] = ACTIONS(3965), - [sym_comment] = ACTIONS(53), - }, - [2271] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5614), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2272] = { - [sym__concat] = ACTIONS(3971), - [anon_sym_RBRACE] = ACTIONS(3971), - [sym_comment] = ACTIONS(53), - }, - [2273] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5616), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2274] = { - [sym__concat] = ACTIONS(3977), - [anon_sym_RBRACE] = ACTIONS(3977), - [sym_comment] = ACTIONS(53), - }, - [2275] = { - [sym__concat] = ACTIONS(4001), - [anon_sym_RBRACE] = ACTIONS(4001), - [sym_comment] = ACTIONS(53), - }, - [2276] = { - [sym__concat] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4722), - [sym__special_characters] = ACTIONS(4722), - [anon_sym_DQUOTE] = ACTIONS(4720), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym_raw_string] = ACTIONS(4720), - [anon_sym_POUND] = ACTIONS(4720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4720), - [anon_sym_COLON] = ACTIONS(4722), - [anon_sym_COLON_QMARK] = ACTIONS(4722), - [anon_sym_COLON_DASH] = ACTIONS(4722), - [anon_sym_PERCENT] = ACTIONS(4722), - [anon_sym_DASH] = ACTIONS(4722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4720), - [anon_sym_BQUOTE] = ACTIONS(4720), - [anon_sym_LT_LPAREN] = ACTIONS(4720), - [anon_sym_GT_LPAREN] = ACTIONS(4720), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4722), - }, - [2277] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_RBRACE] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(4726), - [sym__special_characters] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4724), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym_raw_string] = ACTIONS(4724), - [anon_sym_POUND] = ACTIONS(4724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4724), - [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(4724), - [anon_sym_BQUOTE] = ACTIONS(4724), - [anon_sym_LT_LPAREN] = ACTIONS(4724), - [anon_sym_GT_LPAREN] = ACTIONS(4724), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4726), - }, - [2278] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_EQ] = ACTIONS(4730), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym_raw_string] = ACTIONS(4728), - [anon_sym_POUND] = ACTIONS(4728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), - [anon_sym_COLON] = ACTIONS(4730), - [anon_sym_COLON_QMARK] = ACTIONS(4730), - [anon_sym_COLON_DASH] = ACTIONS(4730), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_DASH] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), - [anon_sym_BQUOTE] = ACTIONS(4728), - [anon_sym_LT_LPAREN] = ACTIONS(4728), - [anon_sym_GT_LPAREN] = ACTIONS(4728), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4730), - }, - [2279] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5618), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2280] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_RBRACE] = ACTIONS(4734), - [anon_sym_EQ] = ACTIONS(4736), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym_raw_string] = ACTIONS(4734), - [anon_sym_POUND] = ACTIONS(4734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), - [anon_sym_COLON] = ACTIONS(4736), - [anon_sym_COLON_QMARK] = ACTIONS(4736), - [anon_sym_COLON_DASH] = ACTIONS(4736), - [anon_sym_PERCENT] = ACTIONS(4736), - [anon_sym_DASH] = ACTIONS(4736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), - [anon_sym_BQUOTE] = ACTIONS(4734), - [anon_sym_LT_LPAREN] = ACTIONS(4734), - [anon_sym_GT_LPAREN] = ACTIONS(4734), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4736), - }, - [2281] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5620), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2282] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_RBRACE] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4742), - [sym__special_characters] = ACTIONS(4742), - [anon_sym_DQUOTE] = ACTIONS(4740), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym_raw_string] = ACTIONS(4740), - [anon_sym_POUND] = ACTIONS(4740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4740), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_COLON_QMARK] = ACTIONS(4742), - [anon_sym_COLON_DASH] = ACTIONS(4742), - [anon_sym_PERCENT] = ACTIONS(4742), - [anon_sym_DASH] = ACTIONS(4742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4740), - [anon_sym_BQUOTE] = ACTIONS(4740), - [anon_sym_LT_LPAREN] = ACTIONS(4740), - [anon_sym_GT_LPAREN] = ACTIONS(4740), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4742), - }, - [2283] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5622), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2284] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_EQ] = ACTIONS(4784), - [sym__special_characters] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(4782), - [anon_sym_DOLLAR] = ACTIONS(4784), - [sym_raw_string] = ACTIONS(4782), - [anon_sym_POUND] = ACTIONS(4782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4782), - [anon_sym_COLON] = ACTIONS(4784), - [anon_sym_COLON_QMARK] = ACTIONS(4784), - [anon_sym_COLON_DASH] = ACTIONS(4784), - [anon_sym_PERCENT] = ACTIONS(4784), - [anon_sym_DASH] = ACTIONS(4784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4782), - [anon_sym_BQUOTE] = ACTIONS(4782), - [anon_sym_LT_LPAREN] = ACTIONS(4782), - [anon_sym_GT_LPAREN] = ACTIONS(4782), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4784), - }, - [2285] = { - [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__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] = { - [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] = { - [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] = { - [sym__heredoc_body_middle] = ACTIONS(4720), - [sym__heredoc_body_end] = ACTIONS(4720), - [anon_sym_DOLLAR] = ACTIONS(4722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4720), - [sym_comment] = ACTIONS(53), - }, - [2290] = { - [sym__heredoc_body_middle] = ACTIONS(4724), - [sym__heredoc_body_end] = ACTIONS(4724), - [anon_sym_DOLLAR] = ACTIONS(4726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4724), - [sym_comment] = ACTIONS(53), - }, - [2291] = { - [sym__heredoc_body_middle] = ACTIONS(4728), - [sym__heredoc_body_end] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), - [sym_comment] = ACTIONS(53), - }, - [2292] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5624), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2293] = { - [sym__heredoc_body_middle] = ACTIONS(4734), - [sym__heredoc_body_end] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(4736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), - [sym_comment] = ACTIONS(53), - }, - [2294] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5626), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2295] = { - [sym__heredoc_body_middle] = ACTIONS(4740), - [sym__heredoc_body_end] = ACTIONS(4740), - [anon_sym_DOLLAR] = ACTIONS(4742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4740), - [sym_comment] = ACTIONS(53), - }, - [2296] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5628), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2297] = { - [sym__heredoc_body_middle] = ACTIONS(4782), - [sym__heredoc_body_end] = ACTIONS(4782), - [anon_sym_DOLLAR] = ACTIONS(4784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4782), - [sym_comment] = ACTIONS(53), - }, - [2298] = { - [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__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(4720), - [anon_sym_RPAREN] = ACTIONS(4720), - [sym__special_characters] = ACTIONS(4720), - [anon_sym_DQUOTE] = ACTIONS(4720), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym_raw_string] = ACTIONS(4720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4720), - [anon_sym_BQUOTE] = ACTIONS(4720), - [anon_sym_LT_LPAREN] = ACTIONS(4720), - [anon_sym_GT_LPAREN] = ACTIONS(4720), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4720), - }, - [2301] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_RPAREN] = ACTIONS(4724), - [sym__special_characters] = ACTIONS(4724), - [anon_sym_DQUOTE] = ACTIONS(4724), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym_raw_string] = ACTIONS(4724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4724), - [anon_sym_BQUOTE] = ACTIONS(4724), - [anon_sym_LT_LPAREN] = ACTIONS(4724), - [anon_sym_GT_LPAREN] = ACTIONS(4724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4724), - }, - [2302] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_RPAREN] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(4728), - [anon_sym_DQUOTE] = ACTIONS(4728), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym_raw_string] = ACTIONS(4728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), - [anon_sym_BQUOTE] = ACTIONS(4728), - [anon_sym_LT_LPAREN] = ACTIONS(4728), - [anon_sym_GT_LPAREN] = ACTIONS(4728), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4728), - }, - [2303] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5630), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2304] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_RPAREN] = ACTIONS(4734), - [sym__special_characters] = ACTIONS(4734), - [anon_sym_DQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym_raw_string] = ACTIONS(4734), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), - [anon_sym_BQUOTE] = ACTIONS(4734), - [anon_sym_LT_LPAREN] = ACTIONS(4734), - [anon_sym_GT_LPAREN] = ACTIONS(4734), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4734), - }, - [2305] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5632), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2306] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_RPAREN] = ACTIONS(4740), - [sym__special_characters] = ACTIONS(4740), - [anon_sym_DQUOTE] = ACTIONS(4740), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym_raw_string] = ACTIONS(4740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4740), - [anon_sym_BQUOTE] = ACTIONS(4740), - [anon_sym_LT_LPAREN] = ACTIONS(4740), - [anon_sym_GT_LPAREN] = ACTIONS(4740), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4740), - }, - [2307] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5634), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2308] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_RPAREN] = ACTIONS(4782), - [sym__special_characters] = ACTIONS(4782), - [anon_sym_DQUOTE] = ACTIONS(4782), - [anon_sym_DOLLAR] = ACTIONS(4784), - [sym_raw_string] = ACTIONS(4782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4782), - [anon_sym_BQUOTE] = ACTIONS(4782), - [anon_sym_LT_LPAREN] = ACTIONS(4782), - [anon_sym_GT_LPAREN] = ACTIONS(4782), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4782), - }, - [2309] = { - [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), - [sym_word] = ACTIONS(4790), - }, - [2310] = { - [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), - [sym_word] = ACTIONS(4794), - }, - [2311] = { - [sym_file_descriptor] = ACTIONS(5282), - [sym__concat] = ACTIONS(5282), - [sym_variable_name] = ACTIONS(5282), - [anon_sym_esac] = ACTIONS(5284), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_RPAREN] = ACTIONS(5284), - [anon_sym_SEMI_SEMI] = ACTIONS(5284), - [anon_sym_PIPE_AMP] = ACTIONS(5284), - [anon_sym_AMP_AMP] = ACTIONS(5284), - [anon_sym_PIPE_PIPE] = ACTIONS(5284), - [anon_sym_LT] = ACTIONS(5284), - [anon_sym_GT] = ACTIONS(5284), - [anon_sym_GT_GT] = ACTIONS(5284), - [anon_sym_AMP_GT] = ACTIONS(5284), - [anon_sym_AMP_GT_GT] = ACTIONS(5284), - [anon_sym_LT_AMP] = ACTIONS(5284), - [anon_sym_GT_AMP] = ACTIONS(5284), - [sym__special_characters] = ACTIONS(5284), - [anon_sym_DQUOTE] = ACTIONS(5284), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), - [anon_sym_BQUOTE] = ACTIONS(5284), - [anon_sym_LT_LPAREN] = ACTIONS(5284), - [anon_sym_GT_LPAREN] = ACTIONS(5284), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5284), - [anon_sym_SEMI] = ACTIONS(5284), - [anon_sym_LF] = ACTIONS(5282), - [anon_sym_AMP] = ACTIONS(5284), - }, - [2312] = { - [sym_file_descriptor] = ACTIONS(5286), - [sym__concat] = ACTIONS(5286), - [sym_variable_name] = ACTIONS(5286), - [anon_sym_esac] = ACTIONS(5288), - [anon_sym_PIPE] = ACTIONS(5288), - [anon_sym_RPAREN] = ACTIONS(5288), - [anon_sym_SEMI_SEMI] = ACTIONS(5288), - [anon_sym_PIPE_AMP] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [anon_sym_LT] = ACTIONS(5288), - [anon_sym_GT] = ACTIONS(5288), - [anon_sym_GT_GT] = ACTIONS(5288), - [anon_sym_AMP_GT] = ACTIONS(5288), - [anon_sym_AMP_GT_GT] = ACTIONS(5288), - [anon_sym_LT_AMP] = ACTIONS(5288), - [anon_sym_GT_AMP] = ACTIONS(5288), - [sym__special_characters] = ACTIONS(5288), - [anon_sym_DQUOTE] = ACTIONS(5288), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym_raw_string] = ACTIONS(5288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), - [anon_sym_BQUOTE] = ACTIONS(5288), - [anon_sym_LT_LPAREN] = ACTIONS(5288), - [anon_sym_GT_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5288), - [anon_sym_SEMI] = ACTIONS(5288), - [anon_sym_LF] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5288), - }, - [2313] = { - [sym_file_descriptor] = ACTIONS(5290), - [sym__concat] = ACTIONS(5290), - [sym_variable_name] = ACTIONS(5290), - [anon_sym_esac] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5292), - [anon_sym_RPAREN] = ACTIONS(5292), - [anon_sym_SEMI_SEMI] = ACTIONS(5292), - [anon_sym_PIPE_AMP] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5292), - [anon_sym_GT] = ACTIONS(5292), - [anon_sym_GT_GT] = ACTIONS(5292), - [anon_sym_AMP_GT] = ACTIONS(5292), - [anon_sym_AMP_GT_GT] = ACTIONS(5292), - [anon_sym_LT_AMP] = ACTIONS(5292), - [anon_sym_GT_AMP] = ACTIONS(5292), - [sym__special_characters] = ACTIONS(5292), - [anon_sym_DQUOTE] = ACTIONS(5292), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym_raw_string] = ACTIONS(5292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), - [anon_sym_BQUOTE] = ACTIONS(5292), - [anon_sym_LT_LPAREN] = ACTIONS(5292), - [anon_sym_GT_LPAREN] = ACTIONS(5292), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5292), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LF] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5292), - }, - [2314] = { - [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__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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5636), - [sym_comment] = ACTIONS(53), - }, - [2317] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5638), - [sym_comment] = ACTIONS(53), - }, - [2318] = { - [anon_sym_RBRACE] = ACTIONS(5638), - [sym_comment] = ACTIONS(53), - }, - [2319] = { - [sym_concatenation] = STATE(2463), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2463), - [anon_sym_RBRACE] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5642), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5644), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5642), - [anon_sym_COLON_QMARK] = ACTIONS(5642), - [anon_sym_COLON_DASH] = ACTIONS(5642), - [anon_sym_PERCENT] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2320] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(3874), - [anon_sym_PIPE_PIPE] = ACTIONS(3874), - [anon_sym_EQ_TILDE] = ACTIONS(3874), - [anon_sym_EQ_EQ] = ACTIONS(3874), - [anon_sym_EQ] = ACTIONS(3876), - [anon_sym_LT] = ACTIONS(3874), - [anon_sym_GT] = ACTIONS(3874), - [anon_sym_BANG_EQ] = ACTIONS(3874), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3874), - }, - [2321] = { [sym_concatenation] = STATE(2465), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -62667,41 +61787,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2465), - [anon_sym_RBRACE] = ACTIONS(5646), - [anon_sym_EQ] = ACTIONS(5648), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5650), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5648), - [anon_sym_COLON_QMARK] = ACTIONS(5648), - [anon_sym_COLON_DASH] = ACTIONS(5648), - [anon_sym_PERCENT] = ACTIONS(5648), - [anon_sym_DASH] = ACTIONS(5648), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(5680), + [anon_sym_EQ] = ACTIONS(5682), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5684), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5682), + [anon_sym_COLON_QMARK] = ACTIONS(5682), + [anon_sym_COLON_DASH] = ACTIONS(5682), + [anon_sym_PERCENT] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2322] = { - [sym__concat] = ACTIONS(3884), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3884), - [anon_sym_AMP_AMP] = ACTIONS(3884), - [anon_sym_PIPE_PIPE] = ACTIONS(3884), - [anon_sym_EQ_TILDE] = ACTIONS(3884), - [anon_sym_EQ_EQ] = ACTIONS(3884), - [anon_sym_EQ] = ACTIONS(3886), - [anon_sym_LT] = ACTIONS(3884), - [anon_sym_GT] = ACTIONS(3884), - [anon_sym_BANG_EQ] = ACTIONS(3884), + [2246] = { + [sym__concat] = ACTIONS(3975), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3884), + [sym_word] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3975), }, - [2323] = { + [2247] = { [sym_concatenation] = STATE(2467), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), @@ -62710,753 +61834,479 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2467), - [anon_sym_RBRACE] = ACTIONS(5652), - [anon_sym_EQ] = ACTIONS(5654), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5654), - [anon_sym_COLON_QMARK] = ACTIONS(5654), - [anon_sym_COLON_DASH] = ACTIONS(5654), - [anon_sym_PERCENT] = ACTIONS(5654), - [anon_sym_DASH] = ACTIONS(5654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(5686), + [anon_sym_EQ] = ACTIONS(5688), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5688), + [anon_sym_COLON_QMARK] = ACTIONS(5688), + [anon_sym_COLON_DASH] = ACTIONS(5688), + [anon_sym_PERCENT] = ACTIONS(5688), + [anon_sym_DASH] = ACTIONS(5688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2324] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_EQ_TILDE] = ACTIONS(3939), - [anon_sym_EQ_EQ] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3939), - [anon_sym_GT] = ACTIONS(3939), - [anon_sym_BANG_EQ] = ACTIONS(3939), + [2248] = { + [sym__concat] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3939), + [sym_word] = ACTIONS(3987), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3985), }, - [2325] = { - [sym_concatenation] = STATE(885), + [2249] = { + [sym_concatenation] = STATE(2469), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5658), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(2469), + [anon_sym_RBRACE] = ACTIONS(5692), + [anon_sym_EQ] = ACTIONS(5694), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5696), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5694), + [anon_sym_COLON_QMARK] = ACTIONS(5694), + [anon_sym_COLON_DASH] = ACTIONS(5694), + [anon_sym_PERCENT] = ACTIONS(5694), + [anon_sym_DASH] = ACTIONS(5694), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2326] = { - [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), + [2250] = { + [sym__concat] = ACTIONS(4040), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3965), + [sym_word] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4040), }, - [2327] = { - [sym_concatenation] = STATE(885), + [2251] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2328] = { - [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), + [2252] = { + [sym__concat] = ACTIONS(4062), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3971), + [sym_word] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), }, - [2329] = { - [sym_concatenation] = STATE(885), + [2253] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5662), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5700), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2330] = { - [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), + [2254] = { + [sym__concat] = ACTIONS(4068), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3977), + [sym_word] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4068), }, - [2331] = { - [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), + [2255] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5702), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2256] = { + [sym__concat] = ACTIONS(4074), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4001), + [sym_word] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4074), }, - [2332] = { - [sym__concat] = ACTIONS(5282), - [anon_sym_esac] = ACTIONS(5284), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_SEMI_SEMI] = ACTIONS(5284), - [anon_sym_PIPE_AMP] = ACTIONS(5284), - [anon_sym_AMP_AMP] = ACTIONS(5284), - [anon_sym_PIPE_PIPE] = ACTIONS(5284), - [anon_sym_EQ_TILDE] = ACTIONS(5284), - [anon_sym_EQ_EQ] = ACTIONS(5284), - [anon_sym_EQ] = ACTIONS(5284), - [anon_sym_LT] = ACTIONS(5284), - [anon_sym_GT] = ACTIONS(5284), - [anon_sym_BANG_EQ] = ACTIONS(5284), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5284), - [anon_sym_SEMI] = ACTIONS(5284), - [anon_sym_LF] = ACTIONS(5282), - [anon_sym_AMP] = ACTIONS(5284), + [2257] = { + [sym__concat] = ACTIONS(4098), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4098), }, - [2333] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_esac] = ACTIONS(5288), - [anon_sym_PIPE] = ACTIONS(5288), - [anon_sym_SEMI_SEMI] = ACTIONS(5288), - [anon_sym_PIPE_AMP] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [anon_sym_EQ_TILDE] = ACTIONS(5288), - [anon_sym_EQ_EQ] = ACTIONS(5288), - [anon_sym_EQ] = ACTIONS(5288), - [anon_sym_LT] = ACTIONS(5288), - [anon_sym_GT] = ACTIONS(5288), - [anon_sym_BANG_EQ] = ACTIONS(5288), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5288), - [anon_sym_SEMI] = ACTIONS(5288), - [anon_sym_LF] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5288), + [2258] = { + [sym_concatenation] = STATE(2473), + [sym_string] = STATE(2478), + [sym_array] = STATE(2473), + [sym_simple_expansion] = STATE(2478), + [sym_string_expansion] = STATE(2478), + [sym_expansion] = STATE(2478), + [sym_command_substitution] = STATE(2478), + [sym_process_substitution] = STATE(2478), + [sym__empty_value] = ACTIONS(5704), + [anon_sym_LPAREN] = ACTIONS(5706), + [sym__special_characters] = ACTIONS(5708), + [anon_sym_DQUOTE] = ACTIONS(5710), + [anon_sym_DOLLAR] = ACTIONS(5712), + [sym_raw_string] = ACTIONS(5714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5718), + [anon_sym_BQUOTE] = ACTIONS(5720), + [anon_sym_LT_LPAREN] = ACTIONS(5722), + [anon_sym_GT_LPAREN] = ACTIONS(5722), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5714), }, - [2334] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_esac] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5292), - [anon_sym_SEMI_SEMI] = ACTIONS(5292), - [anon_sym_PIPE_AMP] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [anon_sym_EQ_TILDE] = ACTIONS(5292), - [anon_sym_EQ_EQ] = ACTIONS(5292), - [anon_sym_EQ] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5292), - [anon_sym_GT] = ACTIONS(5292), - [anon_sym_BANG_EQ] = ACTIONS(5292), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5292), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LF] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5292), - }, - [2335] = { - [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(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(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] = { - [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] = { - [anon_sym_RPAREN] = ACTIONS(5668), + [2259] = { + [sym_do_group] = STATE(2483), + [anon_sym_do] = ACTIONS(395), [sym_comment] = ACTIONS(53), }, - [2340] = { - [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_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_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), + [2260] = { + [sym_compound_statement] = STATE(2485), + [anon_sym_LPAREN] = ACTIONS(5724), + [anon_sym_LBRACE] = ACTIONS(441), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5686), }, - [2343] = { - [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), + [2261] = { + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_RBRACK] = ACTIONS(5726), + [anon_sym_EQ_TILDE] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5696), + [sym_test_operator] = ACTIONS(541), }, - [2344] = { - [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), - [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), + [2262] = { + [anon_sym_AMP_AMP] = ACTIONS(573), + [anon_sym_PIPE_PIPE] = ACTIONS(573), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5726), + [anon_sym_EQ_TILDE] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(577), + [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), }, - [2345] = { - [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), - [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), + [2263] = { + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(5728), + [anon_sym_PLUS_EQ] = ACTIONS(5728), + [sym_comment] = ACTIONS(53), }, - [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(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), + [2264] = { + [aux_sym_concatenation_repeat1] = STATE(2489), + [sym__concat] = ACTIONS(5730), + [sym_variable_name] = ACTIONS(583), + [anon_sym_esac] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_SEMI_SEMI] = ACTIONS(583), + [anon_sym_PIPE_AMP] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [sym__special_characters] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(585), + [sym_raw_string] = ACTIONS(583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(583), + [anon_sym_BQUOTE] = ACTIONS(583), + [anon_sym_LT_LPAREN] = ACTIONS(583), + [anon_sym_GT_LPAREN] = ACTIONS(583), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(585), + [sym_word] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(585), }, - [2347] = { + [2265] = { [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), + [aux_sym_string_repeat1] = STATE(2492), + [anon_sym_DQUOTE] = ACTIONS(5732), + [anon_sym_DOLLAR] = ACTIONS(5734), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, - [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), + [2266] = { + [sym_string] = STATE(2494), + [anon_sym_DQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR] = ACTIONS(5736), + [sym_raw_string] = ACTIONS(5738), + [anon_sym_POUND] = ACTIONS(5736), + [anon_sym_DASH] = ACTIONS(5736), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5740), + [anon_sym_STAR] = ACTIONS(5736), + [anon_sym_AT] = ACTIONS(5736), + [anon_sym_QMARK] = ACTIONS(5736), + [anon_sym_0] = ACTIONS(5742), + [anon_sym__] = ACTIONS(5742), }, - [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), + [2267] = { + [aux_sym_concatenation_repeat1] = STATE(2489), + [sym__concat] = ACTIONS(5730), + [sym_variable_name] = ACTIONS(599), + [anon_sym_esac] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_SEMI_SEMI] = ACTIONS(599), + [anon_sym_PIPE_AMP] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [sym__special_characters] = ACTIONS(599), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(601), + [sym_raw_string] = ACTIONS(599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LT_LPAREN] = ACTIONS(599), + [anon_sym_GT_LPAREN] = ACTIONS(599), [sym_comment] = ACTIONS(53), + [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), }, - [2352] = { - [sym_subscript] = STATE(2492), - [sym_variable_name] = ACTIONS(5704), - [anon_sym_DOLLAR] = ACTIONS(5706), - [anon_sym_DASH] = ACTIONS(5706), + [2268] = { + [sym_subscript] = STATE(2500), + [sym_variable_name] = ACTIONS(5744), + [anon_sym_BANG] = ACTIONS(5746), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_POUND] = ACTIONS(5746), + [anon_sym_DASH] = ACTIONS(5748), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5750), + [anon_sym_STAR] = ACTIONS(5748), + [anon_sym_AT] = ACTIONS(5748), + [anon_sym_QMARK] = ACTIONS(5748), + [anon_sym_0] = ACTIONS(5752), + [anon_sym__] = ACTIONS(5752), + }, + [2269] = { + [sym__terminated_statement] = STATE(2503), + [sym_for_statement] = STATE(2501), + [sym_c_style_for_statement] = STATE(2501), + [sym_while_statement] = STATE(2501), + [sym_if_statement] = STATE(2501), + [sym_case_statement] = STATE(2501), + [sym_function_definition] = STATE(2501), + [sym_subshell] = STATE(2501), + [sym_pipeline] = STATE(2501), + [sym_list] = STATE(2501), + [sym_negated_command] = STATE(2501), + [sym_test_command] = STATE(2501), + [sym_declaration_command] = STATE(2501), + [sym_unset_command] = STATE(2501), + [sym_command] = STATE(2501), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2502), + [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(2503), + [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), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5708), - [anon_sym_STAR] = ACTIONS(5706), - [anon_sym_AT] = ACTIONS(5706), - [anon_sym_QMARK] = ACTIONS(5706), - [anon_sym_0] = ACTIONS(5710), - [anon_sym__] = ACTIONS(5710), + [sym_word] = ACTIONS(107), }, - [2353] = { - [sym_concatenation] = STATE(2495), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2495), - [anon_sym_RBRACE] = ACTIONS(5712), - [anon_sym_EQ] = ACTIONS(5714), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5716), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(5718), - [anon_sym_COLON] = ACTIONS(5714), - [anon_sym_COLON_QMARK] = ACTIONS(5714), - [anon_sym_COLON_DASH] = ACTIONS(5714), - [anon_sym_PERCENT] = ACTIONS(5714), - [anon_sym_DASH] = ACTIONS(5714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2354] = { - [sym_concatenation] = STATE(2498), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2498), - [anon_sym_RBRACE] = ACTIONS(5720), - [anon_sym_EQ] = ACTIONS(5722), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2355] = { - [sym_concatenation] = STATE(2501), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2501), - [anon_sym_RBRACE] = ACTIONS(5728), - [anon_sym_EQ] = ACTIONS(5730), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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), + [2270] = { + [sym__terminated_statement] = STATE(2506), [sym_for_statement] = STATE(2504), [sym_c_style_for_statement] = STATE(2504), [sym_while_statement] = STATE(2504), @@ -63471,37 +62321,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2504), [sym_unset_command] = STATE(2504), [sym_command] = STATE(2504), - [sym_command_name] = STATE(65), + [sym_command_name] = STATE(155), [sym_variable_assignment] = STATE(2505), - [sym_subscript] = STATE(67), + [sym_subscript] = STATE(29), [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_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(2506), + [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(87), + [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(89), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -63509,62 +62359,20 @@ 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(103), + [sym__special_characters] = ACTIONS(37), [anon_sym_DQUOTE] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(105), + [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(107), + [sym_word] = ACTIONS(281), }, - [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), - [anon_sym_SEMI] = ACTIONS(5742), - [anon_sym_LF] = ACTIONS(5744), - [anon_sym_AMP] = ACTIONS(5742), - }, - [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(325), - [anon_sym_SEMI] = ACTIONS(5742), - [anon_sym_LF] = ACTIONS(5744), - [anon_sym_AMP] = ACTIONS(5742), - }, - [2361] = { - [sym__terminated_statement] = STATE(273), + [2271] = { + [sym__terminated_statement] = STATE(2509), [sym_for_statement] = STATE(2507), [sym_c_style_for_statement] = STATE(2507), [sym_while_statement] = STATE(2507), @@ -63579,117 +62387,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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(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), - }, - [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_variable_assignment] = STATE(2508), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -63699,7 +62398,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(62), [sym_command_substitution] = STATE(62), [sym_process_substitution] = STATE(62), - [aux_sym_program_repeat1] = STATE(273), + [aux_sym_program_repeat1] = STATE(2509), [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), @@ -63738,376 +62437,820 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [2272] = { + [sym_variable_name] = ACTIONS(613), + [anon_sym_esac] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_SEMI_SEMI] = ACTIONS(613), + [anon_sym_PIPE_AMP] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [sym__special_characters] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(615), + [sym_raw_string] = ACTIONS(613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(613), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(613), + [anon_sym_GT_LPAREN] = ACTIONS(613), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5782), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(615), + [sym_word] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(615), }, - [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), + [2273] = { + [anon_sym_EQ] = ACTIONS(5728), + [anon_sym_PLUS_EQ] = ACTIONS(5728), + [sym_comment] = ACTIONS(53), }, - [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), + [2274] = { + [sym_variable_assignment] = STATE(2510), + [sym_subscript] = STATE(2273), + [sym_concatenation] = STATE(2510), + [sym_string] = STATE(2267), + [sym_simple_expansion] = STATE(2267), + [sym_string_expansion] = STATE(2267), + [sym_expansion] = STATE(2267), + [sym_command_substitution] = STATE(2267), + [sym_process_substitution] = STATE(2267), + [aux_sym_declaration_command_repeat1] = STATE(2510), + [sym_variable_name] = ACTIONS(5244), + [anon_sym_esac] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_SEMI_SEMI] = ACTIONS(619), + [anon_sym_PIPE_AMP] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [sym__special_characters] = ACTIONS(5246), + [anon_sym_DQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR] = ACTIONS(5250), + [sym_raw_string] = ACTIONS(5252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5256), + [anon_sym_BQUOTE] = ACTIONS(5258), + [anon_sym_LT_LPAREN] = ACTIONS(5260), + [anon_sym_GT_LPAREN] = ACTIONS(5260), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5262), + [sym_word] = ACTIONS(5264), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(617), }, - [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), + [2275] = { + [aux_sym_concatenation_repeat1] = STATE(2512), + [sym__concat] = ACTIONS(5754), + [anon_sym_esac] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_SEMI_SEMI] = ACTIONS(625), + [anon_sym_PIPE_AMP] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [sym__special_characters] = ACTIONS(625), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(623), + [sym_raw_string] = ACTIONS(625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(625), + [anon_sym_LT_LPAREN] = ACTIONS(625), + [anon_sym_GT_LPAREN] = ACTIONS(625), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(623), + [sym_word] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(623), }, - [2370] = { + [2276] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(2515), + [anon_sym_DQUOTE] = ACTIONS(5756), + [anon_sym_DOLLAR] = ACTIONS(5758), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [2277] = { + [sym_string] = STATE(2517), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR] = ACTIONS(5760), + [sym_raw_string] = ACTIONS(5762), + [anon_sym_POUND] = ACTIONS(5760), + [anon_sym_DASH] = ACTIONS(5760), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5764), + [anon_sym_STAR] = ACTIONS(5760), + [anon_sym_AT] = ACTIONS(5760), + [anon_sym_QMARK] = ACTIONS(5760), + [anon_sym_0] = ACTIONS(5766), + [anon_sym__] = ACTIONS(5766), + }, + [2278] = { + [aux_sym_concatenation_repeat1] = STATE(2512), + [sym__concat] = ACTIONS(5754), + [anon_sym_esac] = ACTIONS(639), + [anon_sym_PIPE] = ACTIONS(639), + [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(639), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(639), + [sym_word] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(639), + }, + [2279] = { + [sym_subscript] = STATE(2523), + [sym_variable_name] = ACTIONS(5768), + [anon_sym_BANG] = ACTIONS(5770), + [anon_sym_DOLLAR] = ACTIONS(5772), + [anon_sym_POUND] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5772), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5774), + [anon_sym_STAR] = ACTIONS(5772), + [anon_sym_AT] = ACTIONS(5772), + [anon_sym_QMARK] = ACTIONS(5772), + [anon_sym_0] = ACTIONS(5776), + [anon_sym__] = ACTIONS(5776), + }, + [2280] = { + [sym__terminated_statement] = STATE(2526), + [sym_for_statement] = STATE(2524), + [sym_c_style_for_statement] = STATE(2524), + [sym_while_statement] = STATE(2524), + [sym_if_statement] = STATE(2524), + [sym_case_statement] = STATE(2524), + [sym_function_definition] = STATE(2524), + [sym_subshell] = STATE(2524), + [sym_pipeline] = STATE(2524), + [sym_list] = STATE(2524), + [sym_negated_command] = STATE(2524), + [sym_test_command] = STATE(2524), + [sym_declaration_command] = STATE(2524), + [sym_unset_command] = STATE(2524), + [sym_command] = STATE(2524), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2525), + [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(2526), + [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), + }, + [2281] = { + [sym__terminated_statement] = STATE(2529), + [sym_for_statement] = STATE(2527), + [sym_c_style_for_statement] = STATE(2527), + [sym_while_statement] = STATE(2527), + [sym_if_statement] = STATE(2527), + [sym_case_statement] = STATE(2527), + [sym_function_definition] = STATE(2527), + [sym_subshell] = STATE(2527), + [sym_pipeline] = STATE(2527), + [sym_list] = STATE(2527), + [sym_negated_command] = STATE(2527), + [sym_test_command] = STATE(2527), + [sym_declaration_command] = STATE(2527), + [sym_unset_command] = STATE(2527), + [sym_command] = STATE(2527), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2528), + [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(2529), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [2282] = { + [sym__terminated_statement] = STATE(2532), + [sym_for_statement] = STATE(2530), + [sym_c_style_for_statement] = STATE(2530), + [sym_while_statement] = STATE(2530), + [sym_if_statement] = STATE(2530), + [sym_case_statement] = STATE(2530), + [sym_function_definition] = STATE(2530), + [sym_subshell] = STATE(2530), + [sym_pipeline] = STATE(2530), + [sym_list] = STATE(2530), + [sym_negated_command] = STATE(2530), + [sym_test_command] = STATE(2530), + [sym_declaration_command] = STATE(2530), + [sym_unset_command] = STATE(2530), + [sym_command] = STATE(2530), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2531), + [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(2532), + [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), + }, + [2283] = { + [anon_sym_esac] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(655), + [anon_sym_PIPE_AMP] = ACTIONS(655), + [anon_sym_AMP_AMP] = ACTIONS(655), + [anon_sym_PIPE_PIPE] = ACTIONS(655), + [sym__special_characters] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(653), + [sym_raw_string] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(655), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LT_LPAREN] = ACTIONS(655), + [anon_sym_GT_LPAREN] = ACTIONS(655), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(653), + [sym_word] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LF] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + }, + [2284] = { + [sym_concatenation] = STATE(2533), + [sym_string] = STATE(2278), + [sym_simple_expansion] = STATE(2278), + [sym_string_expansion] = STATE(2278), + [sym_expansion] = STATE(2278), + [sym_command_substitution] = STATE(2278), + [sym_process_substitution] = STATE(2278), + [aux_sym_unset_command_repeat1] = STATE(2533), + [anon_sym_esac] = ACTIONS(657), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_SEMI_SEMI] = ACTIONS(659), + [anon_sym_PIPE_AMP] = ACTIONS(659), + [anon_sym_AMP_AMP] = ACTIONS(659), + [anon_sym_PIPE_PIPE] = ACTIONS(659), + [sym__special_characters] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR] = ACTIONS(5270), + [sym_raw_string] = ACTIONS(5272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5276), + [anon_sym_BQUOTE] = ACTIONS(5278), + [anon_sym_LT_LPAREN] = ACTIONS(5280), + [anon_sym_GT_LPAREN] = ACTIONS(5280), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5282), + [sym_word] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(657), + [anon_sym_LF] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(657), + }, + [2285] = { + [sym_string] = STATE(2534), + [sym_simple_expansion] = STATE(2534), + [sym_string_expansion] = STATE(2534), + [sym_expansion] = STATE(2534), + [sym_command_substitution] = STATE(2534), + [sym_process_substitution] = STATE(2534), + [sym__special_characters] = ACTIONS(5778), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(5778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5778), + }, + [2286] = { + [aux_sym_concatenation_repeat1] = STATE(2535), + [sym__simple_heredoc_body] = ACTIONS(695), + [sym__heredoc_body_beginning] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(697), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_EQ_TILDE] = ACTIONS(697), + [anon_sym_EQ_EQ] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [2287] = { + [sym__simple_heredoc_body] = ACTIONS(699), + [sym__heredoc_body_beginning] = ACTIONS(699), + [sym_file_descriptor] = ACTIONS(699), + [sym__concat] = ACTIONS(699), + [anon_sym_esac] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [anon_sym_EQ_TILDE] = ACTIONS(701), + [anon_sym_EQ_EQ] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(699), + [anon_sym_LT_AMP] = ACTIONS(699), + [anon_sym_GT_AMP] = ACTIONS(699), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(699), + [anon_sym_LT_LT_LT] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), + }, + [2288] = { + [anon_sym_DQUOTE] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [2289] = { [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), + [anon_sym_DQUOTE] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(5782), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, - [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), + [2290] = { + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, - [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), + [2291] = { + [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_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), }, - [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), + [2292] = { + [sym__simple_heredoc_body] = ACTIONS(739), + [sym__heredoc_body_beginning] = ACTIONS(739), + [sym_file_descriptor] = ACTIONS(739), + [sym__concat] = ACTIONS(739), + [anon_sym_esac] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_LT] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, - [2374] = { - [anon_sym_LBRACK] = ACTIONS(731), + [2293] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(5784), + [sym_comment] = ACTIONS(53), + }, + [2294] = { + [sym_subscript] = STATE(2542), + [sym_variable_name] = ACTIONS(5786), + [anon_sym_DOLLAR] = ACTIONS(5788), + [anon_sym_DASH] = ACTIONS(5788), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5790), + [anon_sym_STAR] = ACTIONS(5788), + [anon_sym_AT] = ACTIONS(5788), + [anon_sym_QMARK] = ACTIONS(5788), + [anon_sym_0] = ACTIONS(5792), + [anon_sym__] = ACTIONS(5792), + }, + [2295] = { + [sym_concatenation] = STATE(2545), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2545), + [anon_sym_RBRACE] = ACTIONS(5794), [anon_sym_EQ] = ACTIONS(5796), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(5800), + [anon_sym_COLON] = ACTIONS(5796), + [anon_sym_COLON_QMARK] = ACTIONS(5796), + [anon_sym_COLON_DASH] = ACTIONS(5796), + [anon_sym_PERCENT] = ACTIONS(5796), + [anon_sym_DASH] = ACTIONS(5796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2296] = { + [sym_concatenation] = STATE(2548), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2548), + [anon_sym_RBRACE] = ACTIONS(5802), + [anon_sym_EQ] = ACTIONS(5804), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(5808), + [anon_sym_COLON] = ACTIONS(5804), + [anon_sym_COLON_QMARK] = ACTIONS(5804), + [anon_sym_COLON_DASH] = ACTIONS(5804), + [anon_sym_PERCENT] = ACTIONS(5804), + [anon_sym_DASH] = ACTIONS(5804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2297] = { + [sym_concatenation] = STATE(2551), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2551), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_EQ] = ACTIONS(5812), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(5816), + [anon_sym_COLON] = ACTIONS(5812), + [anon_sym_COLON_QMARK] = ACTIONS(5812), + [anon_sym_COLON_DASH] = ACTIONS(5812), + [anon_sym_PERCENT] = ACTIONS(5812), + [anon_sym_DASH] = ACTIONS(5812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2298] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5818), + [anon_sym_SEMI_SEMI] = ACTIONS(5820), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5822), + [anon_sym_LF] = ACTIONS(5820), + [anon_sym_AMP] = ACTIONS(5822), }, - [2375] = { - [sym_subscript] = STATE(2521), - [sym_variable_name] = ACTIONS(5798), - [anon_sym_DOLLAR] = ACTIONS(5800), - [anon_sym_DASH] = ACTIONS(5800), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5802), - [anon_sym_STAR] = ACTIONS(5800), - [anon_sym_AT] = ACTIONS(5800), - [anon_sym_QMARK] = ACTIONS(5800), - [anon_sym_0] = ACTIONS(5804), - [anon_sym__] = ACTIONS(5804), - }, - [2376] = { - [sym_concatenation] = STATE(2524), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2524), - [anon_sym_RBRACE] = ACTIONS(5806), - [anon_sym_EQ] = ACTIONS(5808), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(5812), - [anon_sym_COLON] = ACTIONS(5808), - [anon_sym_COLON_QMARK] = ACTIONS(5808), - [anon_sym_COLON_DASH] = ACTIONS(5808), - [anon_sym_PERCENT] = ACTIONS(5808), - [anon_sym_DASH] = ACTIONS(5808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2377] = { - [sym_concatenation] = STATE(2527), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2527), - [anon_sym_RBRACE] = ACTIONS(5814), - [anon_sym_EQ] = ACTIONS(5816), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2378] = { - [sym_concatenation] = STATE(2530), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2530), - [anon_sym_RBRACE] = ACTIONS(5822), - [anon_sym_EQ] = ACTIONS(5824), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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), + [2299] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5818), + [anon_sym_SEMI_SEMI] = ACTIONS(5820), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5822), + [anon_sym_LF] = ACTIONS(5820), + [anon_sym_AMP] = ACTIONS(5822), }, - [2381] = { + [2300] = { [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_for_statement] = STATE(2554), + [sym_c_style_for_statement] = STATE(2554), + [sym_while_statement] = STATE(2554), + [sym_if_statement] = STATE(2554), + [sym_case_statement] = STATE(2554), + [sym_function_definition] = STATE(2554), + [sym_subshell] = STATE(2554), + [sym_pipeline] = STATE(2554), + [sym_list] = STATE(2554), + [sym_negated_command] = STATE(2554), + [sym_test_command] = STATE(2554), + [sym_declaration_command] = STATE(2554), + [sym_unset_command] = STATE(2554), + [sym_command] = STATE(2554), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(2534), + [sym_variable_assignment] = STATE(2555), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -64156,66 +63299,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [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), + [2301] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(5824), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(5818), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5826), + [anon_sym_LF] = ACTIONS(5824), + [anon_sym_AMP] = ACTIONS(5826), }, - [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), + [2302] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(5824), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(5830), + [anon_sym_BQUOTE] = ACTIONS(5818), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5826), + [anon_sym_LF] = ACTIONS(5824), + [anon_sym_AMP] = ACTIONS(5826), }, - [2384] = { + [2303] = { [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_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(155), - [sym_variable_assignment] = STATE(2537), + [sym_variable_assignment] = STATE(2558), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -64230,21 +63373,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(263), + [anon_sym_while] = ACTIONS(267), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(265), + [anon_sym_function] = ACTIONS(269), [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_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), [anon_sym_LT] = ACTIONS(33), [anon_sym_GT] = ACTIONS(33), [anon_sym_GT_GT] = ACTIONS(35), @@ -64262,69 +63405,69 @@ 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(277), + [sym_word] = ACTIONS(281), }, - [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(5842), - [anon_sym_LF] = ACTIONS(5844), - [anon_sym_AMP] = ACTIONS(5842), + [2304] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5828), + [anon_sym_SEMI_SEMI] = ACTIONS(5830), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5832), + [anon_sym_LF] = ACTIONS(5830), + [anon_sym_AMP] = ACTIONS(5832), }, - [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), + [2305] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(5828), + [anon_sym_SEMI_SEMI] = ACTIONS(5830), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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(5842), - [anon_sym_LF] = ACTIONS(5844), - [anon_sym_AMP] = ACTIONS(5842), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5832), + [anon_sym_LF] = ACTIONS(5830), + [anon_sym_AMP] = ACTIONS(5832), }, - [2387] = { + [2306] = { [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_for_statement] = STATE(2561), + [sym_c_style_for_statement] = STATE(2561), + [sym_while_statement] = STATE(2561), + [sym_if_statement] = STATE(2561), + [sym_case_statement] = STATE(2561), + [sym_function_definition] = STATE(2561), + [sym_subshell] = STATE(2561), + [sym_pipeline] = STATE(2561), + [sym_list] = STATE(2561), + [sym_negated_command] = STATE(2561), + [sym_test_command] = STATE(2561), + [sym_declaration_command] = STATE(2561), + [sym_unset_command] = STATE(2561), + [sym_command] = STATE(2561), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(2541), + [sym_variable_assignment] = STATE(2562), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -64373,3856 +63516,12169 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [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), + [2307] = { + [anon_sym_RPAREN] = ACTIONS(5834), + [sym_comment] = ACTIONS(53), + }, + [2308] = { + [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(1970), + [sym_variable_assignment] = STATE(2564), + [sym_subscript] = STATE(1972), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(1973), + [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), + [aux_sym_command_repeat1] = STATE(1975), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym_declare] = ACTIONS(4466), + [anon_sym_typeset] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_readonly] = ACTIONS(4466), + [anon_sym_local] = ACTIONS(4466), + [anon_sym_unset] = ACTIONS(4468), + [anon_sym_unsetenv] = ACTIONS(4468), + [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(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4486), + }, + [2309] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_esac] = ACTIONS(5836), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(5838), + [anon_sym_DQUOTE] = ACTIONS(5840), + [anon_sym_DOLLAR] = ACTIONS(5838), + [sym_raw_string] = ACTIONS(5840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5840), + [anon_sym_BQUOTE] = ACTIONS(5840), + [anon_sym_LT_LPAREN] = ACTIONS(5840), + [anon_sym_GT_LPAREN] = ACTIONS(5840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5838), + }, + [2310] = { + [sym_for_statement] = STATE(2565), + [sym_c_style_for_statement] = STATE(2565), + [sym_while_statement] = STATE(2565), + [sym_if_statement] = STATE(2565), + [sym_case_statement] = STATE(2565), + [sym_function_definition] = STATE(2565), + [sym_subshell] = STATE(2565), + [sym_pipeline] = STATE(2565), + [sym_list] = STATE(2565), + [sym_negated_command] = STATE(2565), + [sym_test_command] = STATE(2565), + [sym_declaration_command] = STATE(2565), + [sym_unset_command] = STATE(2565), + [sym_command] = STATE(2565), + [sym_command_name] = STATE(1970), + [sym_variable_assignment] = STATE(2566), + [sym_subscript] = STATE(1972), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(1973), + [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), + [aux_sym_command_repeat1] = STATE(1975), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym_declare] = ACTIONS(4466), + [anon_sym_typeset] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_readonly] = ACTIONS(4466), + [anon_sym_local] = ACTIONS(4466), + [anon_sym_unset] = ACTIONS(4468), + [anon_sym_unsetenv] = ACTIONS(4468), + [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(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4486), + }, + [2311] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_esac] = ACTIONS(835), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2312] = { + [anon_sym_LT] = ACTIONS(5842), + [anon_sym_GT] = ACTIONS(5842), + [anon_sym_GT_GT] = ACTIONS(5844), + [anon_sym_AMP_GT] = ACTIONS(5842), + [anon_sym_AMP_GT_GT] = ACTIONS(5844), + [anon_sym_LT_AMP] = ACTIONS(5844), + [anon_sym_GT_AMP] = ACTIONS(5844), + [sym_comment] = ACTIONS(53), + }, + [2313] = { + [sym_concatenation] = STATE(2570), + [sym_string] = STATE(2569), + [sym_simple_expansion] = STATE(2569), + [sym_string_expansion] = STATE(2569), + [sym_expansion] = STATE(2569), + [sym_command_substitution] = STATE(2569), + [sym_process_substitution] = STATE(2569), [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(5870), - [sym_word] = ACTIONS(5855), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(5848), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(5850), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5852), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5854), + [anon_sym_BQUOTE] = ACTIONS(5856), + [anon_sym_LT_LPAREN] = ACTIONS(5858), + [anon_sym_GT_LPAREN] = ACTIONS(5858), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(5850), + [sym_regex] = ACTIONS(5860), + }, + [2314] = { + [sym_concatenation] = STATE(485), + [sym_string] = STATE(2574), + [sym_simple_expansion] = STATE(2574), + [sym_string_expansion] = STATE(2574), + [sym_expansion] = STATE(2574), + [sym_command_substitution] = STATE(2574), + [sym_process_substitution] = STATE(2574), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(5864), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(5868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5872), + [anon_sym_BQUOTE] = ACTIONS(5874), + [anon_sym_LT_LPAREN] = ACTIONS(5876), + [anon_sym_GT_LPAREN] = ACTIONS(5876), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5868), + }, + [2315] = { + [sym_concatenation] = STATE(489), + [sym_string] = STATE(2580), + [sym_simple_expansion] = STATE(2580), + [sym_string_expansion] = STATE(2580), + [sym_expansion] = STATE(2580), + [sym_command_substitution] = STATE(2580), + [sym_process_substitution] = STATE(2580), + [sym__special_characters] = ACTIONS(5878), + [anon_sym_DQUOTE] = ACTIONS(5864), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(5880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5872), + [anon_sym_BQUOTE] = ACTIONS(5874), + [anon_sym_LT_LPAREN] = ACTIONS(5876), + [anon_sym_GT_LPAREN] = ACTIONS(5876), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5880), + }, + [2316] = { + [aux_sym_concatenation_repeat1] = STATE(2286), + [sym__simple_heredoc_body] = ACTIONS(879), + [sym__heredoc_body_beginning] = ACTIONS(879), + [sym_file_descriptor] = ACTIONS(879), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(881), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_SEMI_SEMI] = ACTIONS(879), + [anon_sym_PIPE_AMP] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(879), + [anon_sym_PIPE_PIPE] = ACTIONS(879), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_GT_GT] = ACTIONS(879), + [anon_sym_AMP_GT] = ACTIONS(881), + [anon_sym_AMP_GT_GT] = ACTIONS(879), + [anon_sym_LT_AMP] = ACTIONS(879), + [anon_sym_GT_AMP] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(881), + [anon_sym_LT_LT_DASH] = ACTIONS(879), + [anon_sym_LT_LT_LT] = ACTIONS(879), + [sym__special_characters] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(881), + [sym_raw_string] = ACTIONS(879), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(879), + [anon_sym_BQUOTE] = ACTIONS(879), + [anon_sym_LT_LPAREN] = ACTIONS(879), + [anon_sym_GT_LPAREN] = ACTIONS(879), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(881), + }, + [2317] = { + [aux_sym_concatenation_repeat1] = STATE(2286), + [sym__simple_heredoc_body] = ACTIONS(883), + [sym__heredoc_body_beginning] = ACTIONS(883), + [sym_file_descriptor] = ACTIONS(883), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_SEMI_SEMI] = ACTIONS(883), + [anon_sym_PIPE_AMP] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(883), + [anon_sym_PIPE_PIPE] = ACTIONS(883), + [anon_sym_EQ_TILDE] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(883), + [anon_sym_AMP_GT] = ACTIONS(885), + [anon_sym_AMP_GT_GT] = ACTIONS(883), + [anon_sym_LT_AMP] = ACTIONS(883), + [anon_sym_GT_AMP] = ACTIONS(883), + [anon_sym_LT_LT] = ACTIONS(885), + [anon_sym_LT_LT_DASH] = ACTIONS(883), + [anon_sym_LT_LT_LT] = ACTIONS(883), + [sym__special_characters] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(883), + [anon_sym_DOLLAR] = ACTIONS(885), + [sym_raw_string] = ACTIONS(883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(883), + [anon_sym_BQUOTE] = ACTIONS(883), + [anon_sym_LT_LPAREN] = ACTIONS(883), + [anon_sym_GT_LPAREN] = ACTIONS(883), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(885), + }, + [2318] = { + [sym_file_redirect] = STATE(2581), + [sym_heredoc_redirect] = STATE(2581), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(2581), + [aux_sym_while_statement_repeat1] = STATE(2581), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_AMP_GT] = ACTIONS(5330), + [anon_sym_AMP_GT_GT] = ACTIONS(5332), + [anon_sym_LT_AMP] = ACTIONS(5332), + [anon_sym_GT_AMP] = ACTIONS(5332), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(5334), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), + }, + [2319] = { + [sym_file_redirect] = STATE(2582), + [sym_heredoc_redirect] = STATE(2582), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(2582), + [sym_concatenation] = STATE(2583), + [sym_string] = STATE(2317), + [sym_simple_expansion] = STATE(2317), + [sym_string_expansion] = STATE(2317), + [sym_expansion] = STATE(2317), + [sym_command_substitution] = STATE(2317), + [sym_process_substitution] = STATE(2317), + [aux_sym_while_statement_repeat1] = STATE(2582), + [aux_sym_command_repeat2] = STATE(2583), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_EQ_TILDE] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_AMP_GT] = ACTIONS(5330), + [anon_sym_AMP_GT_GT] = ACTIONS(5332), + [anon_sym_LT_AMP] = ACTIONS(5332), + [anon_sym_GT_AMP] = ACTIONS(5332), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(5334), + [sym__special_characters] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(5338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5340), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), + }, + [2320] = { + [anon_sym_esac] = ACTIONS(5836), + [sym__special_characters] = ACTIONS(5840), + [anon_sym_DQUOTE] = ACTIONS(5840), + [anon_sym_DOLLAR] = ACTIONS(5838), + [sym_raw_string] = ACTIONS(5840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5840), + [anon_sym_BQUOTE] = ACTIONS(5840), + [anon_sym_LT_LPAREN] = ACTIONS(5840), + [anon_sym_GT_LPAREN] = ACTIONS(5840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5838), + }, + [2321] = { + [anon_sym_esac] = ACTIONS(5882), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(5884), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [2322] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_esac] = ACTIONS(5836), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(5884), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [2323] = { + [sym__terminated_statement] = STATE(2323), + [sym_for_statement] = STATE(2585), + [sym_c_style_for_statement] = STATE(2585), + [sym_while_statement] = STATE(2585), + [sym_if_statement] = STATE(2585), + [sym_case_statement] = STATE(2585), + [sym_function_definition] = STATE(2585), + [sym_subshell] = STATE(2585), + [sym_pipeline] = STATE(2585), + [sym_list] = STATE(2585), + [sym_negated_command] = STATE(2585), + [sym_test_command] = STATE(2585), + [sym_declaration_command] = STATE(2585), + [sym_unset_command] = STATE(2585), + [sym_command] = STATE(2585), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2586), + [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(2323), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(891), + [sym_variable_name] = ACTIONS(894), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(902), + [anon_sym_if] = ACTIONS(905), + [anon_sym_case] = ACTIONS(908), + [anon_sym_esac] = ACTIONS(3482), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_function] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(923), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_typeset] = ACTIONS(926), + [anon_sym_export] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_local] = ACTIONS(926), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(932), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(932), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_AMP] = ACTIONS(935), + [sym__special_characters] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(962), + }, + [2324] = { + [sym_file_redirect] = STATE(2582), + [sym_heredoc_redirect] = STATE(2582), + [sym_heredoc_body] = STATE(490), + [sym_herestring_redirect] = STATE(2582), + [sym_concatenation] = STATE(2587), + [sym_string] = STATE(2317), + [sym_simple_expansion] = STATE(2317), + [sym_string_expansion] = STATE(2317), + [sym_expansion] = STATE(2317), + [sym_command_substitution] = STATE(2317), + [sym_process_substitution] = STATE(2317), + [aux_sym_while_statement_repeat1] = STATE(2582), + [aux_sym_command_repeat2] = STATE(2587), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(887), + [anon_sym_PIPE_AMP] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_EQ_TILDE] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_AMP_GT] = ACTIONS(5330), + [anon_sym_AMP_GT_GT] = ACTIONS(5332), + [anon_sym_LT_AMP] = ACTIONS(5332), + [anon_sym_GT_AMP] = ACTIONS(5332), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(5334), + [sym__special_characters] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(5338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5340), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), + }, + [2325] = { + [sym__terminated_statement] = STATE(2323), + [sym_for_statement] = STATE(2589), + [sym_c_style_for_statement] = STATE(2589), + [sym_while_statement] = STATE(2589), + [sym_if_statement] = STATE(2589), + [sym_case_statement] = STATE(2589), + [sym_function_definition] = STATE(2589), + [sym_subshell] = STATE(2589), + [sym_pipeline] = STATE(2589), + [sym_list] = STATE(2589), + [sym_negated_command] = STATE(2589), + [sym_test_command] = STATE(2589), + [sym_declaration_command] = STATE(2589), + [sym_unset_command] = STATE(2589), + [sym_command] = STATE(2589), + [sym_command_name] = STATE(1970), + [sym_variable_assignment] = STATE(2590), + [sym_subscript] = STATE(1972), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(1973), + [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), + [aux_sym_program_repeat1] = STATE(2323), + [aux_sym_command_repeat1] = STATE(1975), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5836), + [anon_sym_SEMI_SEMI] = ACTIONS(5886), + [anon_sym_function] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym_declare] = ACTIONS(4466), + [anon_sym_typeset] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_readonly] = ACTIONS(4466), + [anon_sym_local] = ACTIONS(4466), + [anon_sym_unset] = ACTIONS(4468), + [anon_sym_unsetenv] = ACTIONS(4468), + [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(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4486), + }, + [2326] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_esac] = ACTIONS(5888), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(5890), + [anon_sym_DQUOTE] = ACTIONS(5892), + [anon_sym_DOLLAR] = ACTIONS(5890), + [sym_raw_string] = ACTIONS(5892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5892), + [anon_sym_BQUOTE] = ACTIONS(5892), + [anon_sym_LT_LPAREN] = ACTIONS(5892), + [anon_sym_GT_LPAREN] = ACTIONS(5892), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5890), + }, + [2327] = { + [anon_sym_esac] = ACTIONS(5888), + [sym__special_characters] = ACTIONS(5892), + [anon_sym_DQUOTE] = ACTIONS(5892), + [anon_sym_DOLLAR] = ACTIONS(5890), + [sym_raw_string] = ACTIONS(5892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5892), + [anon_sym_BQUOTE] = ACTIONS(5892), + [anon_sym_LT_LPAREN] = ACTIONS(5892), + [anon_sym_GT_LPAREN] = ACTIONS(5892), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5890), + }, + [2328] = { + [anon_sym_esac] = ACTIONS(5894), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(5896), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [2329] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_esac] = ACTIONS(5888), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(5896), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [2330] = { + [sym__terminated_statement] = STATE(2323), + [sym_for_statement] = STATE(2593), + [sym_c_style_for_statement] = STATE(2593), + [sym_while_statement] = STATE(2593), + [sym_if_statement] = STATE(2593), + [sym_case_statement] = STATE(2593), + [sym_function_definition] = STATE(2593), + [sym_subshell] = STATE(2593), + [sym_pipeline] = STATE(2593), + [sym_list] = STATE(2593), + [sym_negated_command] = STATE(2593), + [sym_test_command] = STATE(2593), + [sym_declaration_command] = STATE(2593), + [sym_unset_command] = STATE(2593), + [sym_command] = STATE(2593), + [sym_command_name] = STATE(1970), + [sym_variable_assignment] = STATE(2594), + [sym_subscript] = STATE(1972), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(1973), + [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), + [aux_sym_program_repeat1] = STATE(2323), + [aux_sym_command_repeat1] = STATE(1975), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(11), + [anon_sym_while] = ACTIONS(4452), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_esac] = ACTIONS(5888), + [anon_sym_SEMI_SEMI] = ACTIONS(5898), + [anon_sym_function] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym_declare] = ACTIONS(4466), + [anon_sym_typeset] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_readonly] = ACTIONS(4466), + [anon_sym_local] = ACTIONS(4466), + [anon_sym_unset] = ACTIONS(4468), + [anon_sym_unsetenv] = ACTIONS(4468), + [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(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4486), + }, + [2331] = { + [sym__terminated_statement] = STATE(2598), + [sym_for_statement] = STATE(2596), + [sym_c_style_for_statement] = STATE(2596), + [sym_while_statement] = STATE(2596), + [sym_if_statement] = STATE(2596), + [sym_case_statement] = STATE(2596), + [sym_function_definition] = STATE(2596), + [sym_subshell] = STATE(2596), + [sym_pipeline] = STATE(2596), + [sym_list] = STATE(2596), + [sym_negated_command] = STATE(2596), + [sym_test_command] = STATE(2596), + [sym_declaration_command] = STATE(2596), + [sym_unset_command] = STATE(2596), + [sym_command] = STATE(2596), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2597), + [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(2598), + [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(5900), + [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), + }, + [2332] = { + [aux_sym_case_item_repeat1] = STATE(1977), + [anon_sym_PIPE] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(5902), + [sym_comment] = ACTIONS(53), + }, + [2333] = { + [sym__terminated_statement] = STATE(2603), + [sym_for_statement] = STATE(2601), + [sym_c_style_for_statement] = STATE(2601), + [sym_while_statement] = STATE(2601), + [sym_if_statement] = STATE(2601), + [sym_case_statement] = STATE(2601), + [sym_function_definition] = STATE(2601), + [sym_subshell] = STATE(2601), + [sym_pipeline] = STATE(2601), + [sym_list] = STATE(2601), + [sym_negated_command] = STATE(2601), + [sym_test_command] = STATE(2601), + [sym_declaration_command] = STATE(2601), + [sym_unset_command] = STATE(2601), + [sym_command] = STATE(2601), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2602), + [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(2603), + [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(5904), + [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), + }, + [2334] = { + [aux_sym_case_item_repeat1] = STATE(1977), + [anon_sym_PIPE] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(5906), + [sym_comment] = ACTIONS(53), + }, + [2335] = { + [anon_sym_esac] = ACTIONS(5908), + [anon_sym_PIPE] = ACTIONS(5910), + [anon_sym_RPAREN] = ACTIONS(5908), + [anon_sym_SEMI_SEMI] = ACTIONS(5908), + [anon_sym_PIPE_AMP] = ACTIONS(5908), + [anon_sym_AMP_AMP] = ACTIONS(5908), + [anon_sym_PIPE_PIPE] = ACTIONS(5908), + [anon_sym_BQUOTE] = ACTIONS(5908), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5910), + [anon_sym_LF] = ACTIONS(5908), + [anon_sym_AMP] = ACTIONS(5910), + }, + [2336] = { + [anon_sym_esac] = ACTIONS(5912), + [anon_sym_PIPE] = ACTIONS(5914), + [anon_sym_RPAREN] = ACTIONS(5912), + [anon_sym_SEMI_SEMI] = ACTIONS(5912), + [anon_sym_PIPE_AMP] = ACTIONS(5912), + [anon_sym_AMP_AMP] = ACTIONS(5912), + [anon_sym_PIPE_PIPE] = ACTIONS(5912), + [anon_sym_BQUOTE] = ACTIONS(5912), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5914), + [anon_sym_LF] = ACTIONS(5912), + [anon_sym_AMP] = ACTIONS(5914), + }, + [2337] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_in] = ACTIONS(5524), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5524), + }, + [2338] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_in] = ACTIONS(5528), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5528), + }, + [2339] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_in] = ACTIONS(5532), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5532), + }, + [2340] = { + [aux_sym_concatenation_repeat1] = STATE(2340), + [sym__concat] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [2341] = { + [aux_sym_concatenation_repeat1] = STATE(2341), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(5389), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [2342] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_RBRACK] = ACTIONS(5524), + [anon_sym_EQ_TILDE] = ACTIONS(5524), + [anon_sym_EQ_EQ] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5524), + [anon_sym_GT] = ACTIONS(5524), + [anon_sym_BANG_EQ] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5524), + }, + [2343] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [anon_sym_RBRACK] = ACTIONS(5528), + [anon_sym_EQ_TILDE] = ACTIONS(5528), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5528), + [anon_sym_GT] = ACTIONS(5528), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5528), + }, + [2344] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [anon_sym_RBRACK] = ACTIONS(5532), + [anon_sym_EQ_TILDE] = ACTIONS(5532), + [anon_sym_EQ_EQ] = ACTIONS(5532), + [anon_sym_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5532), + [anon_sym_GT] = ACTIONS(5532), + [anon_sym_BANG_EQ] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5532), + }, + [2345] = { + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2857), + [anon_sym_LT_LT_DASH] = ACTIONS(2855), + [anon_sym_LT_LT_LT] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [2346] = { + [sym_file_descriptor] = ACTIONS(2869), + [sym__concat] = ACTIONS(2869), + [anon_sym_esac] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_AMP_GT] = ACTIONS(2871), + [anon_sym_AMP_GT_GT] = ACTIONS(2869), + [anon_sym_LT_AMP] = ACTIONS(2869), + [anon_sym_GT_AMP] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_LT_LT_DASH] = ACTIONS(2869), + [anon_sym_LT_LT_LT] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + }, + [2347] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5916), + [sym_comment] = ACTIONS(53), + }, + [2348] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5918), + [sym_comment] = ACTIONS(53), + }, + [2349] = { + [anon_sym_RBRACE] = ACTIONS(5918), + [sym_comment] = ACTIONS(53), + }, + [2350] = { + [sym_concatenation] = STATE(2609), + [sym_string] = STATE(2608), + [sym_simple_expansion] = STATE(2608), + [sym_string_expansion] = STATE(2608), + [sym_expansion] = STATE(2608), + [sym_command_substitution] = STATE(2608), + [sym_process_substitution] = STATE(2608), + [anon_sym_RBRACE] = ACTIONS(5918), + [sym__special_characters] = ACTIONS(5920), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(5922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5922), + }, + [2351] = { + [sym_file_descriptor] = ACTIONS(2905), + [sym__concat] = ACTIONS(2905), + [anon_sym_esac] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2907), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_LT_LT_DASH] = ACTIONS(2905), + [anon_sym_LT_LT_LT] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + }, + [2352] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5924), + }, + [2353] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5926), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2354] = { + [sym_file_descriptor] = ACTIONS(2913), + [sym__concat] = ACTIONS(2913), + [anon_sym_esac] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_GT] = ACTIONS(2915), + [anon_sym_AMP_GT_GT] = ACTIONS(2913), + [anon_sym_LT_AMP] = ACTIONS(2913), + [anon_sym_GT_AMP] = ACTIONS(2913), + [anon_sym_LT_LT] = ACTIONS(2915), + [anon_sym_LT_LT_DASH] = ACTIONS(2913), + [anon_sym_LT_LT_LT] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + }, + [2355] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5928), + }, + [2356] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5930), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2357] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(5932), + }, + [2358] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5918), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2359] = { + [sym_concatenation] = STATE(2616), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2616), + [anon_sym_RBRACE] = ACTIONS(5934), + [anon_sym_EQ] = ACTIONS(5936), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5936), + [anon_sym_COLON_QMARK] = ACTIONS(5936), + [anon_sym_COLON_DASH] = ACTIONS(5936), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_DASH] = ACTIONS(5936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2360] = { + [sym_file_descriptor] = ACTIONS(2985), + [sym__concat] = ACTIONS(2985), + [anon_sym_esac] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_GT] = ACTIONS(2987), + [anon_sym_AMP_GT_GT] = ACTIONS(2985), + [anon_sym_LT_AMP] = ACTIONS(2985), + [anon_sym_GT_AMP] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_LT_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT_LT] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), + }, + [2361] = { + [sym_concatenation] = STATE(2618), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2618), + [anon_sym_RBRACE] = ACTIONS(5940), + [anon_sym_EQ] = ACTIONS(5942), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5942), + [anon_sym_COLON_QMARK] = ACTIONS(5942), + [anon_sym_COLON_DASH] = ACTIONS(5942), + [anon_sym_PERCENT] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(5942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2362] = { + [sym_file_descriptor] = ACTIONS(3030), + [sym__concat] = ACTIONS(3030), + [anon_sym_esac] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_RPAREN] = ACTIONS(3030), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_GT] = ACTIONS(3032), + [anon_sym_AMP_GT_GT] = ACTIONS(3030), + [anon_sym_LT_AMP] = ACTIONS(3030), + [anon_sym_GT_AMP] = ACTIONS(3030), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_LT_LT_DASH] = ACTIONS(3030), + [anon_sym_LT_LT_LT] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + }, + [2363] = { + [sym_concatenation] = STATE(2620), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2620), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_EQ] = ACTIONS(5948), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5948), + [anon_sym_COLON_QMARK] = ACTIONS(5948), + [anon_sym_COLON_DASH] = ACTIONS(5948), + [anon_sym_PERCENT] = ACTIONS(5948), + [anon_sym_DASH] = ACTIONS(5948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2364] = { + [sym_file_descriptor] = ACTIONS(3040), + [sym__concat] = ACTIONS(3040), + [anon_sym_esac] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_RPAREN] = ACTIONS(3040), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_GT] = ACTIONS(3042), + [anon_sym_AMP_GT_GT] = ACTIONS(3040), + [anon_sym_LT_AMP] = ACTIONS(3040), + [anon_sym_GT_AMP] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3042), + [anon_sym_LT_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT_LT] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + }, + [2365] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5952), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2366] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(5952), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2367] = { + [sym_file_descriptor] = ACTIONS(3078), + [sym__concat] = ACTIONS(3078), + [anon_sym_esac] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_GT] = ACTIONS(3080), + [anon_sym_AMP_GT_GT] = ACTIONS(3078), + [anon_sym_LT_AMP] = ACTIONS(3078), + [anon_sym_GT_AMP] = ACTIONS(3078), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_LT_LT_DASH] = ACTIONS(3078), + [anon_sym_LT_LT_LT] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), + }, + [2368] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(5954), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2369] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5524), + [anon_sym_EQ_TILDE] = ACTIONS(5524), + [anon_sym_EQ_EQ] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5524), + [anon_sym_GT] = ACTIONS(5524), + [anon_sym_BANG_EQ] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5524), + }, + [2370] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5528), + [anon_sym_EQ_TILDE] = ACTIONS(5528), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5528), + [anon_sym_GT] = ACTIONS(5528), + [anon_sym_BANG_EQ] = ACTIONS(5528), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5528), + }, + [2371] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_RPAREN] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5532), + [anon_sym_EQ_TILDE] = ACTIONS(5532), + [anon_sym_EQ_EQ] = ACTIONS(5532), + [anon_sym_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5532), + [anon_sym_GT] = ACTIONS(5532), + [anon_sym_BANG_EQ] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(5532), + }, + [2372] = { + [sym__concat] = ACTIONS(5524), + [sym_variable_name] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5526), + [sym_word] = ACTIONS(5526), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), + }, + [2373] = { + [sym__concat] = ACTIONS(5528), + [sym_variable_name] = ACTIONS(5528), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5530), + [sym_word] = ACTIONS(5530), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), + }, + [2374] = { + [sym__concat] = ACTIONS(5532), + [sym_variable_name] = ACTIONS(5532), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_RPAREN] = ACTIONS(5532), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5534), + [sym_word] = ACTIONS(5534), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), + }, + [2375] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5526), + [sym_word] = ACTIONS(5526), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), + }, + [2376] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5530), + [sym_word] = ACTIONS(5530), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), + }, + [2377] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_RPAREN] = ACTIONS(5532), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5534), + [sym_word] = ACTIONS(5534), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), + }, + [2378] = { + [sym_file_descriptor] = ACTIONS(5524), + [sym__concat] = ACTIONS(5524), + [sym_variable_name] = ACTIONS(5524), + [anon_sym_LT] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5526), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_AMP_GT] = ACTIONS(5526), + [anon_sym_AMP_GT_GT] = ACTIONS(5524), + [anon_sym_LT_AMP] = ACTIONS(5524), + [anon_sym_GT_AMP] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5524), + }, + [2379] = { + [sym_file_descriptor] = ACTIONS(5528), + [sym__concat] = ACTIONS(5528), + [sym_variable_name] = ACTIONS(5528), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5530), + [anon_sym_GT_GT] = ACTIONS(5528), + [anon_sym_AMP_GT] = ACTIONS(5530), + [anon_sym_AMP_GT_GT] = ACTIONS(5528), + [anon_sym_LT_AMP] = ACTIONS(5528), + [anon_sym_GT_AMP] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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(5528), + }, + [2380] = { + [sym_file_descriptor] = ACTIONS(5532), + [sym__concat] = ACTIONS(5532), + [sym_variable_name] = ACTIONS(5532), + [anon_sym_LT] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5534), + [anon_sym_GT_GT] = ACTIONS(5532), + [anon_sym_AMP_GT] = ACTIONS(5534), + [anon_sym_AMP_GT_GT] = ACTIONS(5532), + [anon_sym_LT_AMP] = ACTIONS(5532), + [anon_sym_GT_AMP] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5532), + }, + [2381] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5526), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym__string_content] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5526), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5526), + [anon_sym_BQUOTE] = ACTIONS(5526), + [sym_comment] = ACTIONS(243), + }, + [2382] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5530), + [anon_sym_DOLLAR] = ACTIONS(5530), + [sym__string_content] = ACTIONS(5528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5530), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5530), + [anon_sym_BQUOTE] = ACTIONS(5530), + [sym_comment] = ACTIONS(243), + }, + [2383] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5534), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym__string_content] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5534), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5534), + [anon_sym_BQUOTE] = ACTIONS(5534), + [sym_comment] = ACTIONS(243), + }, + [2384] = { + [sym__concat] = ACTIONS(3903), + [anon_sym_RBRACE] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + }, + [2385] = { + [sym__concat] = ACTIONS(3911), + [anon_sym_RBRACE] = ACTIONS(3911), + [sym_comment] = ACTIONS(53), + }, + [2386] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5956), + [sym_comment] = ACTIONS(53), + }, + [2387] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(5958), + [sym_comment] = ACTIONS(53), + }, + [2388] = { + [anon_sym_RBRACE] = ACTIONS(5958), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(2626), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2626), + [anon_sym_RBRACE] = ACTIONS(5960), + [anon_sym_EQ] = ACTIONS(5962), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5962), + [anon_sym_COLON_QMARK] = ACTIONS(5962), + [anon_sym_COLON_DASH] = ACTIONS(5962), + [anon_sym_PERCENT] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2390] = { - [sym_compound_statement] = STATE(2542), - [anon_sym_LBRACE] = ACTIONS(435), + [sym__concat] = ACTIONS(3975), + [anon_sym_RBRACE] = ACTIONS(3975), [sym_comment] = ACTIONS(53), }, [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), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_LF] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1880), + [sym_concatenation] = STATE(2628), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2628), + [anon_sym_RBRACE] = ACTIONS(5966), + [anon_sym_EQ] = ACTIONS(5968), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5968), + [anon_sym_COLON_QMARK] = ACTIONS(5968), + [anon_sym_COLON_DASH] = ACTIONS(5968), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_DASH] = ACTIONS(5968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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(325), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_LF] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1880), + [sym__concat] = ACTIONS(3985), + [anon_sym_RBRACE] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(2630), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2630), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_EQ] = ACTIONS(5974), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(5976), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(5974), + [anon_sym_COLON_QMARK] = ACTIONS(5974), + [anon_sym_COLON_DASH] = ACTIONS(5974), + [anon_sym_PERCENT] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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_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), + [sym__concat] = ACTIONS(4040), + [anon_sym_RBRACE] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), }, [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(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5978), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_LF] = ACTIONS(649), - [anon_sym_AMP] = ACTIONS(653), + [sym__concat] = ACTIONS(4062), + [anon_sym_RBRACE] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), }, [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), - [anon_sym_SEMI] = ACTIONS(669), - [anon_sym_LF] = ACTIONS(667), - [anon_sym_AMP] = ACTIONS(669), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5980), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LF] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1926), + [sym__concat] = ACTIONS(4068), + [anon_sym_RBRACE] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), }, [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), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5982), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1941), - [anon_sym_LF] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1941), + [sym__concat] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), }, [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), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_LF] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1932), + [sym__concat] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), }, [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(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(5892), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), + [sym__concat] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4887), + [sym__special_characters] = ACTIONS(4887), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_POUND] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_COLON_QMARK] = ACTIONS(4887), + [anon_sym_COLON_DASH] = ACTIONS(4887), + [anon_sym_PERCENT] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4887), }, [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_word] = ACTIONS(5897), + [sym__concat] = ACTIONS(4889), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_POUND] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_COLON_QMARK] = ACTIONS(4891), + [anon_sym_COLON_DASH] = ACTIONS(4891), + [anon_sym_PERCENT] = ACTIONS(4891), + [anon_sym_DASH] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4891), }, [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), + [sym__concat] = ACTIONS(4893), + [anon_sym_RBRACE] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(4895), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_POUND] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_COLON] = ACTIONS(4895), + [anon_sym_COLON_QMARK] = ACTIONS(4895), + [anon_sym_COLON_DASH] = ACTIONS(4895), + [anon_sym_PERCENT] = ACTIONS(4895), + [anon_sym_DASH] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4895), }, [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_word] = ACTIONS(5897), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(4901), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_POUND] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_COLON_QMARK] = ACTIONS(4901), + [anon_sym_COLON_DASH] = ACTIONS(4901), + [anon_sym_PERCENT] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4901), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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_word] = ACTIONS(5905), + [sym__concat] = ACTIONS(4905), + [anon_sym_RBRACE] = ACTIONS(4905), + [anon_sym_EQ] = ACTIONS(4907), + [sym__special_characters] = ACTIONS(4907), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_POUND] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_COLON] = ACTIONS(4907), + [anon_sym_COLON_QMARK] = ACTIONS(4907), + [anon_sym_COLON_DASH] = ACTIONS(4907), + [anon_sym_PERCENT] = ACTIONS(4907), + [anon_sym_DASH] = ACTIONS(4907), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4907), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(4947), + [anon_sym_RBRACE] = ACTIONS(4947), + [anon_sym_EQ] = ACTIONS(4949), + [sym__special_characters] = ACTIONS(4949), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_POUND] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_COLON] = ACTIONS(4949), + [anon_sym_COLON_QMARK] = ACTIONS(4949), + [anon_sym_COLON_DASH] = ACTIONS(4949), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4949), }, [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), + [sym__concat] = ACTIONS(4955), + [anon_sym_RBRACE] = ACTIONS(4955), + [anon_sym_EQ] = ACTIONS(4957), + [sym__special_characters] = ACTIONS(4957), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_POUND] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4957), + [anon_sym_COLON_QMARK] = ACTIONS(4957), + [anon_sym_COLON_DASH] = ACTIONS(4957), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4957), }, [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), + [sym__concat] = ACTIONS(4959), + [anon_sym_RBRACE] = ACTIONS(4959), + [anon_sym_EQ] = ACTIONS(4961), + [sym__special_characters] = ACTIONS(4961), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_POUND] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4961), + [anon_sym_COLON_QMARK] = ACTIONS(4961), + [anon_sym_COLON_DASH] = ACTIONS(4961), + [anon_sym_PERCENT] = ACTIONS(4961), + [anon_sym_DASH] = ACTIONS(4961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(4961), }, [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), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(2413), + [sym__concat] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [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(325), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(2414), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(5389), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, [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(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__heredoc_body_middle] = ACTIONS(4885), + [sym__heredoc_body_end] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), }, [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__heredoc_body_middle] = ACTIONS(4889), + [sym__heredoc_body_end] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [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__heredoc_body_middle] = ACTIONS(4893), + [sym__heredoc_body_end] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), [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), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5990), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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(325), - [anon_sym_SEMI] = ACTIONS(285), - [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), + [sym__heredoc_body_middle] = ACTIONS(4899), + [sym__heredoc_body_end] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5992), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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__heredoc_body_middle] = ACTIONS(4905), + [sym__heredoc_body_end] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), [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(3804), - [anon_sym_LF] = ACTIONS(3802), - [anon_sym_AMP] = ACTIONS(3804), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5994), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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(3812), - [anon_sym_LF] = ACTIONS(3810), - [anon_sym_AMP] = ACTIONS(3812), + [sym__heredoc_body_middle] = ACTIONS(4947), + [sym__heredoc_body_end] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), }, [2424] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5919), + [sym__heredoc_body_middle] = ACTIONS(4955), + [sym__heredoc_body_end] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), [sym_comment] = ACTIONS(53), }, [2425] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5921), + [sym__heredoc_body_middle] = ACTIONS(4959), + [sym__heredoc_body_end] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), [sym_comment] = ACTIONS(53), }, [2426] = { - [anon_sym_RBRACE] = ACTIONS(5921), + [sym__concat] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4885), }, [2427] = { - [sym_concatenation] = STATE(2563), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2563), - [anon_sym_RBRACE] = ACTIONS(5923), - [anon_sym_EQ] = ACTIONS(5925), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5925), - [anon_sym_COLON_QMARK] = ACTIONS(5925), - [anon_sym_COLON_DASH] = ACTIONS(5925), - [anon_sym_PERCENT] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4889), }, [2428] = { - [sym_file_descriptor] = ACTIONS(3874), - [sym__concat] = ACTIONS(3874), - [anon_sym_esac] = ACTIONS(3876), - [anon_sym_PIPE] = ACTIONS(3876), - [anon_sym_RPAREN] = ACTIONS(3876), - [anon_sym_SEMI_SEMI] = ACTIONS(3876), - [anon_sym_PIPE_AMP] = ACTIONS(3876), - [anon_sym_AMP_AMP] = ACTIONS(3876), - [anon_sym_PIPE_PIPE] = ACTIONS(3876), - [anon_sym_LT] = ACTIONS(3876), - [anon_sym_GT] = ACTIONS(3876), - [anon_sym_GT_GT] = ACTIONS(3876), - [anon_sym_AMP_GT] = ACTIONS(3876), - [anon_sym_AMP_GT_GT] = ACTIONS(3876), - [anon_sym_LT_AMP] = ACTIONS(3876), - [anon_sym_GT_AMP] = ACTIONS(3876), - [anon_sym_LT_LT] = ACTIONS(3876), - [anon_sym_LT_LT_DASH] = ACTIONS(3876), - [anon_sym_LT_LT_LT] = ACTIONS(3876), - [anon_sym_BQUOTE] = ACTIONS(3876), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LF] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3876), + [sym__concat] = ACTIONS(4893), + [anon_sym_RPAREN] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4893), }, [2429] = { - [sym_concatenation] = STATE(2565), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2565), - [anon_sym_RBRACE] = ACTIONS(5929), - [anon_sym_EQ] = ACTIONS(5931), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5933), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5931), - [anon_sym_COLON_QMARK] = ACTIONS(5931), - [anon_sym_COLON_DASH] = ACTIONS(5931), - [anon_sym_PERCENT] = ACTIONS(5931), - [anon_sym_DASH] = ACTIONS(5931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5996), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2430] = { - [sym_file_descriptor] = ACTIONS(3884), - [sym__concat] = ACTIONS(3884), - [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), - [anon_sym_LT] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3886), - [anon_sym_GT_GT] = ACTIONS(3886), - [anon_sym_AMP_GT] = ACTIONS(3886), - [anon_sym_AMP_GT_GT] = ACTIONS(3886), - [anon_sym_LT_AMP] = ACTIONS(3886), - [anon_sym_GT_AMP] = ACTIONS(3886), - [anon_sym_LT_LT] = ACTIONS(3886), - [anon_sym_LT_LT_DASH] = ACTIONS(3886), - [anon_sym_LT_LT_LT] = ACTIONS(3886), - [anon_sym_BQUOTE] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LF] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3886), + [sym__concat] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4899), }, [2431] = { - [sym_concatenation] = STATE(2567), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2567), - [anon_sym_RBRACE] = ACTIONS(5935), - [anon_sym_EQ] = ACTIONS(5937), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(5937), - [anon_sym_COLON_QMARK] = ACTIONS(5937), - [anon_sym_COLON_DASH] = ACTIONS(5937), - [anon_sym_PERCENT] = ACTIONS(5937), - [anon_sym_DASH] = ACTIONS(5937), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(5998), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2432] = { - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3941), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3941), - [anon_sym_LT_AMP] = ACTIONS(3941), - [anon_sym_GT_AMP] = ACTIONS(3941), - [anon_sym_LT_LT] = ACTIONS(3941), - [anon_sym_LT_LT_DASH] = ACTIONS(3941), - [anon_sym_LT_LT_LT] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [sym__concat] = ACTIONS(4905), + [anon_sym_RPAREN] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4905), }, [2433] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5941), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6000), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [sym__concat] = ACTIONS(4947), + [anon_sym_RPAREN] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4947), }, [2435] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5943), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4955), + [anon_sym_RPAREN] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4955), }, [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), + [sym__concat] = ACTIONS(4959), + [anon_sym_RPAREN] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4959), }, [2437] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5945), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(5524), + [sym__concat] = ACTIONS(5524), + [sym_variable_name] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_LT] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5526), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_AMP_GT] = ACTIONS(5526), + [anon_sym_AMP_GT_GT] = ACTIONS(5524), + [anon_sym_LT_AMP] = ACTIONS(5524), + [anon_sym_GT_AMP] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5526), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), }, [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), + [sym_file_descriptor] = ACTIONS(5528), + [sym__concat] = ACTIONS(5528), + [sym_variable_name] = ACTIONS(5528), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5530), + [anon_sym_GT_GT] = ACTIONS(5528), + [anon_sym_AMP_GT] = ACTIONS(5530), + [anon_sym_AMP_GT_GT] = ACTIONS(5528), + [anon_sym_LT_AMP] = ACTIONS(5528), + [anon_sym_GT_AMP] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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(5530), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), }, [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), + [sym_file_descriptor] = ACTIONS(5532), + [sym__concat] = ACTIONS(5532), + [sym_variable_name] = ACTIONS(5532), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_RPAREN] = ACTIONS(5532), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [anon_sym_LT] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5534), + [anon_sym_GT_GT] = ACTIONS(5532), + [anon_sym_AMP_GT] = ACTIONS(5534), + [anon_sym_AMP_GT_GT] = ACTIONS(5532), + [anon_sym_LT_AMP] = ACTIONS(5532), + [anon_sym_GT_AMP] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5534), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), }, [2440] = { - [sym__concat] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(4720), + [sym__concat] = ACTIONS(3903), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [anon_sym_EQ_TILDE] = ACTIONS(3903), + [anon_sym_EQ_EQ] = ACTIONS(3903), + [anon_sym_EQ] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(3903), + [anon_sym_BANG_EQ] = ACTIONS(3903), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3903), }, [2441] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_RBRACE] = ACTIONS(4724), + [sym__concat] = ACTIONS(3911), + [anon_sym_RPAREN_RPAREN] = 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(3913), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_BANG_EQ] = ACTIONS(3911), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3911), }, [2442] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_RBRACE] = ACTIONS(4728), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6002), [sym_comment] = ACTIONS(53), }, [2443] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5947), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6004), + [sym_comment] = ACTIONS(53), }, [2444] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(6004), [sym_comment] = ACTIONS(53), }, [2445] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(2646), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5949), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(2646), + [anon_sym_RBRACE] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(6008), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2446] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_RBRACE] = ACTIONS(4740), + [sym__concat] = ACTIONS(3975), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_EQ_TILDE] = ACTIONS(3975), + [anon_sym_EQ_EQ] = ACTIONS(3975), + [anon_sym_EQ] = ACTIONS(3977), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_GT] = ACTIONS(3975), + [anon_sym_BANG_EQ] = ACTIONS(3975), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3975), }, [2447] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(2648), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5951), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(2648), + [anon_sym_RBRACE] = ACTIONS(6012), + [anon_sym_EQ] = ACTIONS(6014), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2448] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_RBRACE] = ACTIONS(4782), + [sym__concat] = ACTIONS(3985), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_LT] = ACTIONS(3985), + [anon_sym_GT] = ACTIONS(3985), + [anon_sym_BANG_EQ] = ACTIONS(3985), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3985), }, [2449] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2650), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2650), + [anon_sym_RBRACE] = ACTIONS(6018), + [anon_sym_EQ] = ACTIONS(6020), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6020), + [anon_sym_COLON_QMARK] = ACTIONS(6020), + [anon_sym_COLON_DASH] = ACTIONS(6020), + [anon_sym_PERCENT] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2450] = { - [sym__concat] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), + [sym__concat] = ACTIONS(4040), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_EQ_TILDE] = ACTIONS(4040), + [anon_sym_EQ_EQ] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(4042), + [anon_sym_LT] = ACTIONS(4040), + [anon_sym_GT] = ACTIONS(4040), + [anon_sym_BANG_EQ] = ACTIONS(4040), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4040), }, [2451] = { - [sym__concat] = ACTIONS(5282), - [anon_sym_RBRACE] = ACTIONS(5282), - [anon_sym_EQ] = ACTIONS(5284), - [sym__special_characters] = ACTIONS(5284), - [anon_sym_DQUOTE] = ACTIONS(5282), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5282), - [anon_sym_POUND] = ACTIONS(5282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5282), - [anon_sym_COLON] = ACTIONS(5284), - [anon_sym_COLON_QMARK] = ACTIONS(5284), - [anon_sym_COLON_DASH] = ACTIONS(5284), - [anon_sym_PERCENT] = ACTIONS(5284), - [anon_sym_DASH] = ACTIONS(5284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5282), - [anon_sym_BQUOTE] = ACTIONS(5282), - [anon_sym_LT_LPAREN] = ACTIONS(5282), - [anon_sym_GT_LPAREN] = ACTIONS(5282), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5284), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6024), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2452] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_RBRACE] = ACTIONS(5286), - [anon_sym_EQ] = ACTIONS(5288), - [sym__special_characters] = ACTIONS(5288), - [anon_sym_DQUOTE] = ACTIONS(5286), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym_raw_string] = ACTIONS(5286), - [anon_sym_POUND] = ACTIONS(5286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5286), - [anon_sym_COLON] = ACTIONS(5288), - [anon_sym_COLON_QMARK] = ACTIONS(5288), - [anon_sym_COLON_DASH] = ACTIONS(5288), - [anon_sym_PERCENT] = ACTIONS(5288), - [anon_sym_DASH] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5286), - [anon_sym_BQUOTE] = ACTIONS(5286), - [anon_sym_LT_LPAREN] = ACTIONS(5286), - [anon_sym_GT_LPAREN] = ACTIONS(5286), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5288), + [sym__concat] = ACTIONS(4062), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [anon_sym_EQ_TILDE] = ACTIONS(4062), + [anon_sym_EQ_EQ] = ACTIONS(4062), + [anon_sym_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4062), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_BANG_EQ] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4062), }, [2453] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_RBRACE] = ACTIONS(5290), - [anon_sym_EQ] = ACTIONS(5292), - [sym__special_characters] = ACTIONS(5292), - [anon_sym_DQUOTE] = ACTIONS(5290), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym_raw_string] = ACTIONS(5290), - [anon_sym_POUND] = ACTIONS(5290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5290), - [anon_sym_COLON] = ACTIONS(5292), - [anon_sym_COLON_QMARK] = ACTIONS(5292), - [anon_sym_COLON_DASH] = ACTIONS(5292), - [anon_sym_PERCENT] = ACTIONS(5292), - [anon_sym_DASH] = ACTIONS(5292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5290), - [anon_sym_BQUOTE] = ACTIONS(5290), - [anon_sym_LT_LPAREN] = ACTIONS(5290), - [anon_sym_GT_LPAREN] = ACTIONS(5290), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5292), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6026), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2454] = { - [sym__heredoc_body_middle] = ACTIONS(5282), - [sym__heredoc_body_end] = ACTIONS(5282), - [anon_sym_DOLLAR] = ACTIONS(5284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5282), + [sym__concat] = ACTIONS(4068), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_EQ_TILDE] = ACTIONS(4068), + [anon_sym_EQ_EQ] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4068), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_BANG_EQ] = ACTIONS(4068), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4068), }, [2455] = { - [sym__heredoc_body_middle] = ACTIONS(5286), - [sym__heredoc_body_end] = ACTIONS(5286), - [anon_sym_DOLLAR] = ACTIONS(5288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5286), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6028), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2456] = { - [sym__heredoc_body_middle] = ACTIONS(5290), - [sym__heredoc_body_end] = ACTIONS(5290), - [anon_sym_DOLLAR] = ACTIONS(5292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5290), + [sym__concat] = ACTIONS(4074), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_EQ_TILDE] = ACTIONS(4074), + [anon_sym_EQ_EQ] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4074), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_BANG_EQ] = ACTIONS(4074), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4074), }, [2457] = { - [sym__concat] = ACTIONS(5282), - [anon_sym_RPAREN] = ACTIONS(5282), - [sym__special_characters] = ACTIONS(5282), - [anon_sym_DQUOTE] = ACTIONS(5282), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5282), - [anon_sym_BQUOTE] = ACTIONS(5282), - [anon_sym_LT_LPAREN] = ACTIONS(5282), - [anon_sym_GT_LPAREN] = ACTIONS(5282), + [sym__concat] = ACTIONS(4098), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_EQ_TILDE] = ACTIONS(4098), + [anon_sym_EQ_EQ] = ACTIONS(4098), + [anon_sym_EQ] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4098), + [anon_sym_GT] = ACTIONS(4098), + [anon_sym_BANG_EQ] = ACTIONS(4098), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5282), + [sym_test_operator] = ACTIONS(4098), }, [2458] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_RPAREN] = ACTIONS(5286), - [sym__special_characters] = ACTIONS(5286), - [anon_sym_DQUOTE] = ACTIONS(5286), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym_raw_string] = ACTIONS(5286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5286), - [anon_sym_BQUOTE] = ACTIONS(5286), - [anon_sym_LT_LPAREN] = ACTIONS(5286), - [anon_sym_GT_LPAREN] = ACTIONS(5286), + [sym__concat] = ACTIONS(5524), + [anon_sym_esac] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_EQ_TILDE] = ACTIONS(5524), + [anon_sym_EQ_EQ] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5524), + [anon_sym_GT] = ACTIONS(5524), + [anon_sym_BANG_EQ] = ACTIONS(5524), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5286), + [sym_test_operator] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), }, [2459] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_RPAREN] = ACTIONS(5290), - [sym__special_characters] = ACTIONS(5290), - [anon_sym_DQUOTE] = ACTIONS(5290), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym_raw_string] = ACTIONS(5290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5290), - [anon_sym_BQUOTE] = ACTIONS(5290), - [anon_sym_LT_LPAREN] = ACTIONS(5290), - [anon_sym_GT_LPAREN] = ACTIONS(5290), + [sym__concat] = ACTIONS(5528), + [anon_sym_esac] = ACTIONS(5528), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [anon_sym_EQ_TILDE] = ACTIONS(5528), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5528), + [anon_sym_GT] = ACTIONS(5528), + [anon_sym_BANG_EQ] = ACTIONS(5528), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5290), + [sym_test_operator] = ACTIONS(5528), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), }, [2460] = { - [sym__concat] = ACTIONS(4720), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4720), - [anon_sym_AMP_AMP] = ACTIONS(4720), - [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_EQ_TILDE] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4720), + [sym__concat] = ACTIONS(5532), + [anon_sym_esac] = ACTIONS(5532), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [anon_sym_EQ_TILDE] = ACTIONS(5532), + [anon_sym_EQ_EQ] = ACTIONS(5532), + [anon_sym_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5532), + [anon_sym_GT] = ACTIONS(5532), + [anon_sym_BANG_EQ] = ACTIONS(5532), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4720), + [sym_test_operator] = ACTIONS(5532), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), }, [2461] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4724), - [anon_sym_AMP_AMP] = ACTIONS(4724), - [anon_sym_PIPE_PIPE] = ACTIONS(4724), - [anon_sym_EQ_TILDE] = ACTIONS(4724), - [anon_sym_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4724), - [anon_sym_GT] = ACTIONS(4724), - [anon_sym_BANG_EQ] = ACTIONS(4724), + [anon_sym_esac] = ACTIONS(6030), + [anon_sym_PIPE] = ACTIONS(6032), + [anon_sym_RPAREN] = ACTIONS(6030), + [anon_sym_SEMI_SEMI] = ACTIONS(6030), + [anon_sym_PIPE_AMP] = ACTIONS(6030), + [anon_sym_AMP_AMP] = ACTIONS(6030), + [anon_sym_PIPE_PIPE] = ACTIONS(6030), + [anon_sym_BQUOTE] = ACTIONS(6030), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4724), + [anon_sym_SEMI] = ACTIONS(6032), + [anon_sym_LF] = ACTIONS(6030), + [anon_sym_AMP] = ACTIONS(6032), }, [2462] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4728), - [anon_sym_AMP_AMP] = ACTIONS(4728), - [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_EQ_TILDE] = ACTIONS(4728), - [anon_sym_EQ_EQ] = ACTIONS(4728), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4728), - [anon_sym_GT] = ACTIONS(4728), - [anon_sym_BANG_EQ] = ACTIONS(4728), + [sym__concat] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4728), + [sym_word] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), }, [2463] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5953), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(4889), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4889), }, [2464] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4734), - [anon_sym_AMP_AMP] = ACTIONS(4734), - [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [anon_sym_EQ_TILDE] = ACTIONS(4734), - [anon_sym_EQ_EQ] = ACTIONS(4734), - [anon_sym_EQ] = ACTIONS(4736), - [anon_sym_LT] = ACTIONS(4734), - [anon_sym_GT] = ACTIONS(4734), - [anon_sym_BANG_EQ] = ACTIONS(4734), + [sym__concat] = ACTIONS(4893), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4734), + [sym_word] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), }, [2465] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5955), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6034), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2466] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4740), - [anon_sym_AMP_AMP] = ACTIONS(4740), - [anon_sym_PIPE_PIPE] = ACTIONS(4740), - [anon_sym_EQ_TILDE] = ACTIONS(4740), - [anon_sym_EQ_EQ] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(4740), - [anon_sym_BANG_EQ] = ACTIONS(4740), + [sym__concat] = ACTIONS(4899), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4740), + [sym_word] = ACTIONS(4901), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4899), }, [2467] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5957), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6036), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2468] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4782), - [anon_sym_PIPE_PIPE] = ACTIONS(4782), - [anon_sym_EQ_TILDE] = ACTIONS(4782), - [anon_sym_EQ_EQ] = ACTIONS(4782), - [anon_sym_EQ] = ACTIONS(4784), - [anon_sym_LT] = ACTIONS(4782), - [anon_sym_GT] = ACTIONS(4782), - [anon_sym_BANG_EQ] = ACTIONS(4782), + [sym__concat] = ACTIONS(4905), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4782), + [sym_word] = ACTIONS(4907), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4905), }, [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), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6038), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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__concat] = ACTIONS(4947), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4794), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4947), }, [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), + [sym__concat] = ACTIONS(4955), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), }, [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), + [sym__concat] = ACTIONS(4959), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4959), }, [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_esac] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(999), + [sym_file_descriptor] = ACTIONS(999), + [sym_variable_name] = ACTIONS(999), + [anon_sym_esac] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), [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(1001), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_AMP_GT] = ACTIONS(1001), + [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), + [anon_sym_DOLLAR] = ACTIONS(1001), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(1001), + }, + [2474] = { + [sym_concatenation] = STATE(2658), + [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(2658), + [anon_sym_RPAREN] = ACTIONS(6040), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1011), + }, + [2475] = { + [aux_sym_concatenation_repeat1] = STATE(2660), + [sym_file_descriptor] = ACTIONS(1021), + [sym__concat] = ACTIONS(6042), + [sym_variable_name] = ACTIONS(1021), + [anon_sym_esac] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_SEMI_SEMI] = ACTIONS(1021), + [anon_sym_PIPE_AMP] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(1025), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1025), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1025), + [sym_raw_string] = ACTIONS(1021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_BQUOTE] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1021), + [anon_sym_GT_LPAREN] = ACTIONS(1021), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1025), + }, + [2476] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(2663), + [anon_sym_DQUOTE] = ACTIONS(6044), + [anon_sym_DOLLAR] = ACTIONS(6046), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [2477] = { + [sym_string] = STATE(2665), + [anon_sym_DQUOTE] = ACTIONS(5710), + [anon_sym_DOLLAR] = ACTIONS(6048), + [sym_raw_string] = ACTIONS(6050), + [anon_sym_POUND] = ACTIONS(6048), + [anon_sym_DASH] = ACTIONS(6048), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6052), + [anon_sym_STAR] = ACTIONS(6048), + [anon_sym_AT] = ACTIONS(6048), + [anon_sym_QMARK] = ACTIONS(6048), + [anon_sym_0] = ACTIONS(6054), + [anon_sym__] = ACTIONS(6054), + }, + [2478] = { + [aux_sym_concatenation_repeat1] = STATE(2660), + [sym_file_descriptor] = ACTIONS(999), + [sym__concat] = ACTIONS(6042), + [sym_variable_name] = ACTIONS(999), + [anon_sym_esac] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [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(1001), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_AMP_GT] = ACTIONS(1001), + [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(1001), + [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(53), + [sym_word] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(1001), + }, + [2479] = { + [sym_subscript] = STATE(2671), + [sym_variable_name] = ACTIONS(6056), + [anon_sym_BANG] = ACTIONS(6058), + [anon_sym_DOLLAR] = ACTIONS(6060), + [anon_sym_POUND] = ACTIONS(6058), + [anon_sym_DASH] = ACTIONS(6060), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6062), + [anon_sym_STAR] = ACTIONS(6060), + [anon_sym_AT] = ACTIONS(6060), + [anon_sym_QMARK] = ACTIONS(6060), + [anon_sym_0] = ACTIONS(6064), + [anon_sym__] = ACTIONS(6064), + }, + [2480] = { + [sym__terminated_statement] = STATE(2674), + [sym_for_statement] = STATE(2672), + [sym_c_style_for_statement] = STATE(2672), + [sym_while_statement] = STATE(2672), + [sym_if_statement] = STATE(2672), + [sym_case_statement] = STATE(2672), + [sym_function_definition] = STATE(2672), + [sym_subshell] = STATE(2672), + [sym_pipeline] = STATE(2672), + [sym_list] = STATE(2672), + [sym_negated_command] = STATE(2672), + [sym_test_command] = STATE(2672), + [sym_declaration_command] = STATE(2672), + [sym_unset_command] = STATE(2672), + [sym_command] = STATE(2672), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2673), + [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(2674), + [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), + }, + [2481] = { + [sym__terminated_statement] = STATE(2677), + [sym_for_statement] = STATE(2675), + [sym_c_style_for_statement] = STATE(2675), + [sym_while_statement] = STATE(2675), + [sym_if_statement] = STATE(2675), + [sym_case_statement] = STATE(2675), + [sym_function_definition] = STATE(2675), + [sym_subshell] = STATE(2675), + [sym_pipeline] = STATE(2675), + [sym_list] = STATE(2675), + [sym_negated_command] = STATE(2675), + [sym_test_command] = STATE(2675), + [sym_declaration_command] = STATE(2675), + [sym_unset_command] = STATE(2675), + [sym_command] = STATE(2675), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2676), + [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(2677), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [2482] = { + [sym__terminated_statement] = STATE(2680), + [sym_for_statement] = STATE(2678), + [sym_c_style_for_statement] = STATE(2678), + [sym_while_statement] = STATE(2678), + [sym_if_statement] = STATE(2678), + [sym_case_statement] = STATE(2678), + [sym_function_definition] = STATE(2678), + [sym_subshell] = STATE(2678), + [sym_pipeline] = STATE(2678), + [sym_list] = STATE(2678), + [sym_negated_command] = STATE(2678), + [sym_test_command] = STATE(2678), + [sym_declaration_command] = STATE(2678), + [sym_unset_command] = STATE(2678), + [sym_command] = STATE(2678), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2679), + [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(2680), + [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), }, [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), - [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), + [sym_file_redirect] = STATE(2681), + [sym_heredoc_redirect] = STATE(2681), + [sym_heredoc_body] = STATE(575), + [sym_herestring_redirect] = STATE(2681), + [aux_sym_while_statement_repeat1] = STATE(2681), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(1109), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1109), + [anon_sym_PIPE_AMP] = ACTIONS(1109), + [anon_sym_AMP_AMP] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_AMP_GT] = ACTIONS(5330), + [anon_sym_AMP_GT_GT] = ACTIONS(5332), + [anon_sym_LT_AMP] = ACTIONS(5332), + [anon_sym_GT_AMP] = ACTIONS(5332), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(5334), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_LF] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1107), }, [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), - [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), + [anon_sym_RPAREN] = ACTIONS(6066), + [sym_comment] = ACTIONS(53), }, [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), - [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), + [sym_file_redirect] = STATE(624), + [sym_file_descriptor] = ACTIONS(6068), + [anon_sym_esac] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_SEMI_SEMI] = ACTIONS(1193), + [anon_sym_PIPE_AMP] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(6070), + [anon_sym_GT] = ACTIONS(6070), + [anon_sym_GT_GT] = ACTIONS(6072), + [anon_sym_AMP_GT] = ACTIONS(6070), + [anon_sym_AMP_GT_GT] = ACTIONS(6072), + [anon_sym_LT_AMP] = ACTIONS(6072), + [anon_sym_GT_AMP] = ACTIONS(6072), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1191), }, [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), - [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), + [sym_file_redirect] = STATE(2688), + [sym_heredoc_redirect] = STATE(2688), + [sym_herestring_redirect] = STATE(2688), + [aux_sym_while_statement_repeat1] = STATE(2688), + [sym_file_descriptor] = ACTIONS(6074), + [anon_sym_esac] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_SEMI_SEMI] = ACTIONS(1315), + [anon_sym_PIPE_AMP] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(1315), + [anon_sym_PIPE_PIPE] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(6076), + [anon_sym_GT] = ACTIONS(6076), + [anon_sym_GT_GT] = ACTIONS(6078), + [anon_sym_AMP_GT] = ACTIONS(6076), + [anon_sym_AMP_GT_GT] = ACTIONS(6078), + [anon_sym_LT_AMP] = ACTIONS(6078), + [anon_sym_GT_AMP] = ACTIONS(6078), + [anon_sym_LT_LT] = ACTIONS(1321), + [anon_sym_LT_LT_DASH] = ACTIONS(1323), + [anon_sym_LT_LT_LT] = ACTIONS(6080), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LF] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1313), }, [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), - [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), + [sym_concatenation] = STATE(2689), + [sym_string] = STATE(2692), + [sym_array] = STATE(2689), + [sym_simple_expansion] = STATE(2692), + [sym_string_expansion] = STATE(2692), + [sym_expansion] = STATE(2692), + [sym_command_substitution] = STATE(2692), + [sym_process_substitution] = STATE(2692), + [sym__empty_value] = ACTIONS(6082), + [anon_sym_LPAREN] = ACTIONS(6084), + [sym__special_characters] = ACTIONS(6086), + [anon_sym_DQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR] = ACTIONS(5250), + [sym_raw_string] = ACTIONS(6088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5256), + [anon_sym_BQUOTE] = ACTIONS(5258), + [anon_sym_LT_LPAREN] = ACTIONS(5260), + [anon_sym_GT_LPAREN] = ACTIONS(5260), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6088), }, [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_string] = STATE(2693), + [sym_simple_expansion] = STATE(2693), + [sym_string_expansion] = STATE(2693), + [sym_expansion] = STATE(2693), + [sym_command_substitution] = STATE(2693), + [sym_process_substitution] = STATE(2693), + [sym__special_characters] = ACTIONS(6090), + [anon_sym_DQUOTE] = ACTIONS(5248), + [anon_sym_DOLLAR] = ACTIONS(5250), + [sym_raw_string] = ACTIONS(6090), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5256), + [anon_sym_BQUOTE] = ACTIONS(5258), + [anon_sym_LT_LPAREN] = ACTIONS(5260), + [anon_sym_GT_LPAREN] = ACTIONS(5260), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5990), + [sym_word] = ACTIONS(6090), }, [2489] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(5992), + [aux_sym_concatenation_repeat1] = STATE(2694), + [sym__concat] = ACTIONS(5730), + [sym_variable_name] = ACTIONS(695), + [anon_sym_esac] = ACTIONS(697), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [2490] = { - [sym_concatenation] = STATE(2598), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2598), - [anon_sym_RBRACE] = ACTIONS(5994), - [anon_sym_EQ] = ACTIONS(5996), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(5998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(6000), - [anon_sym_COLON] = ACTIONS(5996), - [anon_sym_COLON_QMARK] = ACTIONS(5996), - [anon_sym_COLON_DASH] = ACTIONS(5996), - [anon_sym_PERCENT] = ACTIONS(5996), - [anon_sym_DASH] = ACTIONS(5996), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(699), + [anon_sym_esac] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), + [sym_word] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), }, [2491] = { - [sym_concatenation] = STATE(2601), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2601), - [anon_sym_RBRACE] = ACTIONS(6002), - [anon_sym_EQ] = ACTIONS(6004), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(6008), - [anon_sym_COLON] = ACTIONS(6004), - [anon_sym_COLON_QMARK] = ACTIONS(6004), - [anon_sym_COLON_DASH] = ACTIONS(6004), - [anon_sym_PERCENT] = ACTIONS(6004), - [anon_sym_DASH] = ACTIONS(6004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(6092), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [2492] = { - [sym_concatenation] = STATE(2603), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2603), - [anon_sym_RBRACE] = ACTIONS(5986), - [anon_sym_EQ] = ACTIONS(6010), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6012), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(6014), - [anon_sym_COLON] = ACTIONS(6010), - [anon_sym_COLON_QMARK] = ACTIONS(6010), - [anon_sym_COLON_DASH] = ACTIONS(6010), - [anon_sym_PERCENT] = ACTIONS(6010), - [anon_sym_DASH] = ACTIONS(6010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(6092), + [anon_sym_DOLLAR] = ACTIONS(6094), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [2493] = { - [sym__concat] = ACTIONS(1772), - [sym_variable_name] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [sym__special_characters] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1774), - [anon_sym_GT_LPAREN] = ACTIONS(1774), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1774), - [sym_word] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1774), + [sym__concat] = ACTIONS(731), + [sym_variable_name] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [2494] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6016), + [sym__concat] = ACTIONS(735), + [sym_variable_name] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), }, [2495] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6018), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym__concat] = ACTIONS(739), + [sym_variable_name] = ACTIONS(739), + [anon_sym_esac] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(741), + [sym_word] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [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), - [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), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(6096), + [sym_comment] = ACTIONS(53), }, [2497] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6020), + [sym_subscript] = STATE(2701), + [sym_variable_name] = ACTIONS(6098), + [anon_sym_DOLLAR] = ACTIONS(6100), + [anon_sym_DASH] = ACTIONS(6100), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6102), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_AT] = ACTIONS(6100), + [anon_sym_QMARK] = ACTIONS(6100), + [anon_sym_0] = ACTIONS(6104), + [anon_sym__] = ACTIONS(6104), }, [2498] = { - [sym_concatenation] = STATE(885), + [sym_concatenation] = STATE(2704), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6022), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(2704), + [anon_sym_RBRACE] = ACTIONS(6106), + [anon_sym_EQ] = ACTIONS(6108), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6112), + [anon_sym_COLON] = ACTIONS(6108), + [anon_sym_COLON_QMARK] = ACTIONS(6108), + [anon_sym_COLON_DASH] = ACTIONS(6108), + [anon_sym_PERCENT] = ACTIONS(6108), + [anon_sym_DASH] = ACTIONS(6108), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), - [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), + [sym_concatenation] = STATE(2707), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2707), + [anon_sym_RBRACE] = ACTIONS(6114), + [anon_sym_EQ] = ACTIONS(6116), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6120), + [anon_sym_COLON] = ACTIONS(6116), + [anon_sym_COLON_QMARK] = ACTIONS(6116), + [anon_sym_COLON_DASH] = ACTIONS(6116), + [anon_sym_PERCENT] = ACTIONS(6116), + [anon_sym_DASH] = ACTIONS(6116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2500] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6024), + [sym_concatenation] = STATE(2710), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2710), + [anon_sym_RBRACE] = ACTIONS(6122), + [anon_sym_EQ] = ACTIONS(6124), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6128), + [anon_sym_COLON] = ACTIONS(6124), + [anon_sym_COLON_QMARK] = ACTIONS(6124), + [anon_sym_COLON_DASH] = ACTIONS(6124), + [anon_sym_PERCENT] = ACTIONS(6124), + [anon_sym_DASH] = ACTIONS(6124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2501] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(5986), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6130), + [anon_sym_SEMI_SEMI] = ACTIONS(6132), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6134), + [anon_sym_LF] = ACTIONS(6132), + [anon_sym_AMP] = ACTIONS(6134), }, [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(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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6130), + [anon_sym_SEMI_SEMI] = ACTIONS(6132), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6134), + [anon_sym_LF] = ACTIONS(6132), + [anon_sym_AMP] = ACTIONS(6134), }, [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__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2713), + [sym_c_style_for_statement] = STATE(2713), + [sym_while_statement] = STATE(2713), + [sym_if_statement] = STATE(2713), + [sym_case_statement] = STATE(2713), + [sym_function_definition] = STATE(2713), + [sym_subshell] = STATE(2713), + [sym_pipeline] = STATE(2713), + [sym_list] = STATE(2713), + [sym_negated_command] = STATE(2713), + [sym_test_command] = STATE(2713), + [sym_declaration_command] = STATE(2713), + [sym_unset_command] = STATE(2713), + [sym_command] = STATE(2713), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2714), + [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(819), + [sym_word] = ACTIONS(107), }, [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), - [anon_sym_SEMI] = ACTIONS(6030), - [anon_sym_LF] = ACTIONS(6032), - [anon_sym_AMP] = ACTIONS(6030), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6136), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(6130), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6138), + [anon_sym_LF] = ACTIONS(6136), + [anon_sym_AMP] = ACTIONS(6138), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6136), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(6130), [anon_sym_LT_LPAREN] = ACTIONS(325), [anon_sym_GT_LPAREN] = ACTIONS(325), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(6030), - [anon_sym_LF] = ACTIONS(6032), - [anon_sym_AMP] = ACTIONS(6030), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6138), + [anon_sym_LF] = ACTIONS(6136), + [anon_sym_AMP] = ACTIONS(6138), }, [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__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2716), + [sym_c_style_for_statement] = STATE(2716), + [sym_while_statement] = STATE(2716), + [sym_if_statement] = STATE(2716), + [sym_case_statement] = STATE(2716), + [sym_function_definition] = STATE(2716), + [sym_subshell] = STATE(2716), + [sym_pipeline] = STATE(2716), + [sym_list] = STATE(2716), + [sym_negated_command] = STATE(2716), + [sym_test_command] = STATE(2716), + [sym_declaration_command] = STATE(2716), + [sym_unset_command] = STATE(2716), + [sym_command] = STATE(2716), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2717), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(819), + [sym_word] = ACTIONS(281), }, [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), - [anon_sym_SEMI] = ACTIONS(6034), - [anon_sym_LF] = ACTIONS(6036), - [anon_sym_AMP] = ACTIONS(6034), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6140), + [anon_sym_SEMI_SEMI] = ACTIONS(6142), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6144), + [anon_sym_LF] = ACTIONS(6142), + [anon_sym_AMP] = ACTIONS(6144), }, [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), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6140), + [anon_sym_SEMI_SEMI] = ACTIONS(6142), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(6034), - [anon_sym_LF] = ACTIONS(6036), - [anon_sym_AMP] = ACTIONS(6034), - }, - [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), - [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), - }, - [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), - [anon_sym_SEMI] = ACTIONS(6042), - [anon_sym_LF] = ACTIONS(6044), - [anon_sym_AMP] = ACTIONS(6042), - }, - [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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(6042), - [anon_sym_LF] = ACTIONS(6044), - [anon_sym_AMP] = ACTIONS(6042), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6144), + [anon_sym_LF] = ACTIONS(6142), + [anon_sym_AMP] = ACTIONS(6144), + }, + [2509] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2720), + [sym_c_style_for_statement] = STATE(2720), + [sym_while_statement] = STATE(2720), + [sym_if_statement] = STATE(2720), + [sym_case_statement] = STATE(2720), + [sym_function_definition] = STATE(2720), + [sym_subshell] = STATE(2720), + [sym_pipeline] = STATE(2720), + [sym_list] = STATE(2720), + [sym_negated_command] = STATE(2720), + [sym_test_command] = STATE(2720), + [sym_declaration_command] = STATE(2720), + [sym_unset_command] = STATE(2720), + [sym_command] = STATE(2720), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2721), + [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), + }, + [2510] = { + [sym_variable_assignment] = STATE(2510), + [sym_subscript] = STATE(2273), + [sym_concatenation] = STATE(2510), + [sym_string] = STATE(2267), + [sym_simple_expansion] = STATE(2267), + [sym_string_expansion] = STATE(2267), + [sym_expansion] = STATE(2267), + [sym_command_substitution] = STATE(2267), + [sym_process_substitution] = STATE(2267), + [aux_sym_declaration_command_repeat1] = STATE(2510), + [sym_variable_name] = ACTIONS(6146), + [anon_sym_esac] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_SEMI_SEMI] = ACTIONS(1486), + [anon_sym_PIPE_AMP] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [sym__special_characters] = ACTIONS(6149), + [anon_sym_DQUOTE] = ACTIONS(6152), + [anon_sym_DOLLAR] = ACTIONS(6155), + [sym_raw_string] = ACTIONS(6158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6161), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6164), + [anon_sym_BQUOTE] = ACTIONS(6167), + [anon_sym_LT_LPAREN] = ACTIONS(6170), + [anon_sym_GT_LPAREN] = ACTIONS(6170), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6173), + [sym_word] = ACTIONS(6176), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LF] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1484), + }, + [2511] = { + [sym_string] = STATE(2722), + [sym_simple_expansion] = STATE(2722), + [sym_string_expansion] = STATE(2722), + [sym_expansion] = STATE(2722), + [sym_command_substitution] = STATE(2722), + [sym_process_substitution] = STATE(2722), + [sym__special_characters] = ACTIONS(6179), + [anon_sym_DQUOTE] = ACTIONS(5268), + [anon_sym_DOLLAR] = ACTIONS(5270), + [sym_raw_string] = ACTIONS(6179), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5276), + [anon_sym_BQUOTE] = ACTIONS(5278), + [anon_sym_LT_LPAREN] = ACTIONS(5280), + [anon_sym_GT_LPAREN] = ACTIONS(5280), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6179), + }, + [2512] = { + [aux_sym_concatenation_repeat1] = STATE(2723), + [sym__concat] = ACTIONS(5754), + [anon_sym_esac] = ACTIONS(697), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), }, [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), - [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), + [sym__concat] = ACTIONS(699), + [anon_sym_esac] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), + [sym_word] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), }, [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), - [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), + [anon_sym_DQUOTE] = ACTIONS(6181), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, [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), - [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), + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(6181), + [anon_sym_DOLLAR] = ACTIONS(6183), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), }, [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), - [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), + [sym__concat] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), }, [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__concat] = ACTIONS(735), + [anon_sym_esac] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = 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), - [sym_word] = ACTIONS(6055), + [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), }, [2518] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(6057), + [sym__concat] = ACTIONS(739), + [anon_sym_esac] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(741), + [sym_word] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [2519] = { - [sym_concatenation] = STATE(2622), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2622), - [anon_sym_RBRACE] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(6065), - [anon_sym_COLON] = ACTIONS(6061), - [anon_sym_COLON_QMARK] = ACTIONS(6061), - [anon_sym_COLON_DASH] = ACTIONS(6061), - [anon_sym_PERCENT] = ACTIONS(6061), - [anon_sym_DASH] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(6185), + [sym_comment] = ACTIONS(53), }, [2520] = { - [sym_concatenation] = STATE(2625), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2625), - [anon_sym_RBRACE] = ACTIONS(6067), - [anon_sym_EQ] = ACTIONS(6069), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(6073), - [anon_sym_COLON] = ACTIONS(6069), - [anon_sym_COLON_QMARK] = ACTIONS(6069), - [anon_sym_COLON_DASH] = ACTIONS(6069), - [anon_sym_PERCENT] = ACTIONS(6069), - [anon_sym_DASH] = ACTIONS(6069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [sym_subscript] = STATE(2730), + [sym_variable_name] = ACTIONS(6187), + [anon_sym_DOLLAR] = ACTIONS(6189), + [anon_sym_DASH] = ACTIONS(6189), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6191), + [anon_sym_STAR] = ACTIONS(6189), + [anon_sym_AT] = ACTIONS(6189), + [anon_sym_QMARK] = ACTIONS(6189), + [anon_sym_0] = ACTIONS(6193), + [anon_sym__] = ACTIONS(6193), }, [2521] = { - [sym_concatenation] = STATE(2627), + [sym_concatenation] = STATE(2733), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2627), - [anon_sym_RBRACE] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6075), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6077), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(6079), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(2733), + [anon_sym_RBRACE] = ACTIONS(6195), + [anon_sym_EQ] = ACTIONS(6197), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6199), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6197), + [anon_sym_COLON_QMARK] = ACTIONS(6197), + [anon_sym_COLON_DASH] = ACTIONS(6197), + [anon_sym_PERCENT] = ACTIONS(6197), + [anon_sym_DASH] = ACTIONS(6197), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2522] = { - [sym__concat] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_SEMI_SEMI] = ACTIONS(1774), - [anon_sym_PIPE_AMP] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [sym__special_characters] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [sym_raw_string] = ACTIONS(1774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1774), - [anon_sym_GT_LPAREN] = ACTIONS(1774), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1774), - [sym_word] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_LF] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1774), + [sym_concatenation] = STATE(2736), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2736), + [anon_sym_RBRACE] = ACTIONS(6203), + [anon_sym_EQ] = ACTIONS(6205), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6207), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6209), + [anon_sym_COLON] = ACTIONS(6205), + [anon_sym_COLON_QMARK] = ACTIONS(6205), + [anon_sym_COLON_DASH] = ACTIONS(6205), + [anon_sym_PERCENT] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2523] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6081), + [sym_concatenation] = STATE(2739), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2739), + [anon_sym_RBRACE] = ACTIONS(6211), + [anon_sym_EQ] = ACTIONS(6213), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6217), + [anon_sym_COLON] = ACTIONS(6213), + [anon_sym_COLON_QMARK] = ACTIONS(6213), + [anon_sym_COLON_DASH] = ACTIONS(6213), + [anon_sym_PERCENT] = ACTIONS(6213), + [anon_sym_DASH] = ACTIONS(6213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [2524] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6083), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6219), + [anon_sym_SEMI_SEMI] = ACTIONS(6221), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6223), + [anon_sym_LF] = ACTIONS(6221), + [anon_sym_AMP] = ACTIONS(6223), }, [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(1818), - [sym_word] = ACTIONS(1818), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_LF] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1818), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6219), + [anon_sym_SEMI_SEMI] = ACTIONS(6221), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6223), + [anon_sym_LF] = ACTIONS(6221), + [anon_sym_AMP] = ACTIONS(6223), }, [2526] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6085), + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2742), + [sym_c_style_for_statement] = STATE(2742), + [sym_while_statement] = STATE(2742), + [sym_if_statement] = STATE(2742), + [sym_case_statement] = STATE(2742), + [sym_function_definition] = STATE(2742), + [sym_subshell] = STATE(2742), + [sym_pipeline] = STATE(2742), + [sym_list] = STATE(2742), + [sym_negated_command] = STATE(2742), + [sym_test_command] = STATE(2742), + [sym_declaration_command] = STATE(2742), + [sym_unset_command] = STATE(2742), + [sym_command] = STATE(2742), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2743), + [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), }, [2527] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6087), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6225), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(6219), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6227), + [anon_sym_LF] = ACTIONS(6225), + [anon_sym_AMP] = ACTIONS(6227), }, [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(1826), - [sym_word] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_LF] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1826), + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6225), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(6219), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6227), + [anon_sym_LF] = ACTIONS(6225), + [anon_sym_AMP] = ACTIONS(6227), }, [2529] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6089), + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2745), + [sym_c_style_for_statement] = STATE(2745), + [sym_while_statement] = STATE(2745), + [sym_if_statement] = STATE(2745), + [sym_case_statement] = STATE(2745), + [sym_function_definition] = STATE(2745), + [sym_subshell] = STATE(2745), + [sym_pipeline] = STATE(2745), + [sym_list] = STATE(2745), + [sym_negated_command] = STATE(2745), + [sym_test_command] = STATE(2745), + [sym_declaration_command] = STATE(2745), + [sym_unset_command] = STATE(2745), + [sym_command] = STATE(2745), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2746), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), }, [2530] = { - [sym_concatenation] = STATE(885), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6229), + [anon_sym_SEMI_SEMI] = ACTIONS(6231), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6233), + [anon_sym_LF] = ACTIONS(6231), + [anon_sym_AMP] = ACTIONS(6233), + }, + [2531] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6229), + [anon_sym_SEMI_SEMI] = ACTIONS(6231), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6233), + [anon_sym_LF] = ACTIONS(6231), + [anon_sym_AMP] = ACTIONS(6233), + }, + [2532] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2749), + [sym_c_style_for_statement] = STATE(2749), + [sym_while_statement] = STATE(2749), + [sym_if_statement] = STATE(2749), + [sym_case_statement] = STATE(2749), + [sym_function_definition] = STATE(2749), + [sym_subshell] = STATE(2749), + [sym_pipeline] = STATE(2749), + [sym_list] = STATE(2749), + [sym_negated_command] = STATE(2749), + [sym_test_command] = STATE(2749), + [sym_declaration_command] = STATE(2749), + [sym_unset_command] = STATE(2749), + [sym_command] = STATE(2749), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2750), + [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), + }, + [2533] = { + [sym_concatenation] = STATE(2533), + [sym_string] = STATE(2278), + [sym_simple_expansion] = STATE(2278), + [sym_string_expansion] = STATE(2278), + [sym_expansion] = STATE(2278), + [sym_command_substitution] = STATE(2278), + [sym_process_substitution] = STATE(2278), + [aux_sym_unset_command_repeat1] = STATE(2533), + [anon_sym_esac] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_SEMI_SEMI] = ACTIONS(1576), + [anon_sym_PIPE_AMP] = ACTIONS(1576), + [anon_sym_AMP_AMP] = ACTIONS(1576), + [anon_sym_PIPE_PIPE] = ACTIONS(1576), + [sym__special_characters] = ACTIONS(6235), + [anon_sym_DQUOTE] = ACTIONS(6238), + [anon_sym_DOLLAR] = ACTIONS(6241), + [sym_raw_string] = ACTIONS(6244), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6250), + [anon_sym_BQUOTE] = ACTIONS(6253), + [anon_sym_LT_LPAREN] = ACTIONS(6256), + [anon_sym_GT_LPAREN] = ACTIONS(6256), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6259), + [sym_word] = ACTIONS(6262), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_LF] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1574), + }, + [2534] = { + [sym__simple_heredoc_body] = ACTIONS(1664), + [sym__heredoc_body_beginning] = ACTIONS(1664), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1664), + [anon_sym_esac] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1666), + [anon_sym_EQ_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [2535] = { + [aux_sym_concatenation_repeat1] = STATE(2535), + [sym__simple_heredoc_body] = ACTIONS(1664), + [sym__heredoc_body_beginning] = ACTIONS(1664), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(6265), + [anon_sym_esac] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_EQ_TILDE] = ACTIONS(1666), + [anon_sym_EQ_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [2536] = { + [sym__simple_heredoc_body] = ACTIONS(1671), + [sym__heredoc_body_beginning] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1671), + [sym__concat] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1673), + [anon_sym_EQ_EQ] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1673), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1673), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), + }, + [2537] = { + [anon_sym_DQUOTE] = ACTIONS(6268), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [2538] = { + [sym_concatenation] = STATE(2755), + [sym_string] = STATE(2754), + [sym_simple_expansion] = STATE(2754), + [sym_string_expansion] = STATE(2754), + [sym_expansion] = STATE(2754), + [sym_command_substitution] = STATE(2754), + [sym_process_substitution] = STATE(2754), + [anon_sym_RBRACE] = ACTIONS(6270), + [sym__special_characters] = ACTIONS(6272), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6274), + }, + [2539] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(6276), + [sym_comment] = ACTIONS(53), + }, + [2540] = { + [sym_concatenation] = STATE(2759), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(2759), + [anon_sym_RBRACE] = ACTIONS(6278), + [anon_sym_EQ] = ACTIONS(6280), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6284), + [anon_sym_COLON] = ACTIONS(6280), + [anon_sym_COLON_QMARK] = ACTIONS(6280), + [anon_sym_COLON_DASH] = ACTIONS(6280), + [anon_sym_PERCENT] = ACTIONS(6280), + [anon_sym_DASH] = ACTIONS(6280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2531] = { - [sym__concat] = ACTIONS(1830), - [anon_sym_esac] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), + [2541] = { + [sym_concatenation] = STATE(2762), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2762), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_EQ] = ACTIONS(6288), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6292), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2542] = { + [sym_concatenation] = STATE(2764), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2764), + [anon_sym_RBRACE] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(6294), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6298), + [anon_sym_COLON] = ACTIONS(6294), + [anon_sym_COLON_QMARK] = ACTIONS(6294), + [anon_sym_COLON_DASH] = ACTIONS(6294), + [anon_sym_PERCENT] = ACTIONS(6294), + [anon_sym_DASH] = ACTIONS(6294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2543] = { + [sym__simple_heredoc_body] = ACTIONS(1788), + [sym__heredoc_body_beginning] = ACTIONS(1788), + [sym_file_descriptor] = ACTIONS(1788), + [sym__concat] = ACTIONS(1788), + [anon_sym_esac] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [anon_sym_EQ_TILDE] = ACTIONS(1790), + [anon_sym_EQ_EQ] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_GT_GT] = ACTIONS(1788), + [anon_sym_AMP_GT] = ACTIONS(1790), + [anon_sym_AMP_GT_GT] = ACTIONS(1788), + [anon_sym_LT_AMP] = ACTIONS(1788), + [anon_sym_GT_AMP] = ACTIONS(1788), + [anon_sym_LT_LT] = ACTIONS(1790), + [anon_sym_LT_LT_DASH] = ACTIONS(1788), + [anon_sym_LT_LT_LT] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), + }, + [2544] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6300), + }, + [2545] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6302), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2546] = { + [sym__simple_heredoc_body] = ACTIONS(1832), + [sym__heredoc_body_beginning] = ACTIONS(1832), + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), [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(1834), + [anon_sym_EQ_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1834), + [anon_sym_AMP_GT_GT] = ACTIONS(1832), + [anon_sym_LT_AMP] = ACTIONS(1832), + [anon_sym_GT_AMP] = ACTIONS(1832), + [anon_sym_LT_LT] = ACTIONS(1834), + [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), + [anon_sym_DOLLAR] = ACTIONS(1834), [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(819), - }, - [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), - [anon_sym_SEMI] = ACTIONS(6095), - [anon_sym_LF] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6095), - }, - [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_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(6095), - [anon_sym_LF] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6095), - }, - [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), - }, - [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), - [anon_sym_SEMI] = ACTIONS(6099), - [anon_sym_LF] = ACTIONS(6101), - [anon_sym_AMP] = ACTIONS(6099), - }, - [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(325), - [anon_sym_SEMI] = ACTIONS(6099), - [anon_sym_LF] = ACTIONS(6101), - [anon_sym_AMP] = ACTIONS(6099), - }, - [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), - [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), - }, - [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(819), - }, - [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), - [anon_sym_SEMI] = ACTIONS(6107), - [anon_sym_LF] = ACTIONS(6109), - [anon_sym_AMP] = ACTIONS(6107), - }, - [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_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(6107), - [anon_sym_LF] = ACTIONS(6109), - [anon_sym_AMP] = ACTIONS(6107), - }, - [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), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_LF] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2330), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(3089), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3089), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), }, [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(6113), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6304), }, [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(6119), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6306), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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__simple_heredoc_body] = ACTIONS(1840), + [sym__heredoc_body_beginning] = ACTIONS(1840), + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_EQ_TILDE] = ACTIONS(1842), + [anon_sym_EQ_EQ] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1840), + [anon_sym_LT_AMP] = ACTIONS(1840), + [anon_sym_GT_AMP] = ACTIONS(1840), + [anon_sym_LT_LT] = ACTIONS(1842), + [anon_sym_LT_LT_DASH] = ACTIONS(1840), + [anon_sym_LT_LT_LT] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5500), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), }, [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(5502), + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6308), }, [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(285), - [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, [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), + [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_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [2553] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6310), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2554] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6310), + [anon_sym_SEMI_SEMI] = ACTIONS(6312), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6314), + [anon_sym_LF] = ACTIONS(6312), + [anon_sym_AMP] = ACTIONS(6314), + }, + [2555] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6310), + [anon_sym_SEMI_SEMI] = ACTIONS(6312), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6314), + [anon_sym_LF] = ACTIONS(6312), + [anon_sym_AMP] = ACTIONS(6314), }, - [2553] = { - [sym__terminated_statement] = STATE(2553), + [2556] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(6310), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2557] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6316), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(6310), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6318), + [anon_sym_LF] = ACTIONS(6316), + [anon_sym_AMP] = ACTIONS(6318), + }, + [2558] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6316), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(6310), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6318), + [anon_sym_LF] = ACTIONS(6316), + [anon_sym_AMP] = ACTIONS(6318), + }, + [2559] = { + [sym__simple_heredoc_body] = ACTIONS(1878), + [sym__heredoc_body_beginning] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1878), + [sym__concat] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_EQ_TILDE] = ACTIONS(1880), + [anon_sym_EQ_EQ] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1880), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + }, + [2560] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6320), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2561] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6320), + [anon_sym_SEMI_SEMI] = ACTIONS(6322), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6324), + [anon_sym_LF] = ACTIONS(6322), + [anon_sym_AMP] = ACTIONS(6324), + }, + [2562] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6320), + [anon_sym_SEMI_SEMI] = ACTIONS(6322), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6324), + [anon_sym_LF] = ACTIONS(6322), + [anon_sym_AMP] = ACTIONS(6324), + }, + [2563] = { + [sym_compound_statement] = STATE(2775), + [anon_sym_LBRACE] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + }, + [2564] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_esac] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1890), + }, + [2565] = { + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1894), + }, + [2566] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_esac] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1894), + }, + [2567] = { + [sym_concatenation] = STATE(928), + [sym_string] = STATE(2777), + [sym_simple_expansion] = STATE(2777), + [sym_string_expansion] = STATE(2777), + [sym_expansion] = STATE(2777), + [sym_command_substitution] = STATE(2777), + [sym_process_substitution] = STATE(2777), + [sym__special_characters] = ACTIONS(6326), + [anon_sym_DQUOTE] = ACTIONS(5864), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(6328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5872), + [anon_sym_BQUOTE] = ACTIONS(5874), + [anon_sym_LT_LPAREN] = ACTIONS(5876), + [anon_sym_GT_LPAREN] = ACTIONS(5876), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6328), + }, + [2568] = { + [aux_sym_concatenation_repeat1] = STATE(2286), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [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(1926), + [anon_sym_EQ_EQ] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [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(1926), + [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(53), + [sym_word] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), + }, + [2569] = { + [aux_sym_concatenation_repeat1] = STATE(2286), + [sym__simple_heredoc_body] = ACTIONS(1928), + [sym__heredoc_body_beginning] = ACTIONS(1928), + [sym_file_descriptor] = ACTIONS(1928), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_SEMI_SEMI] = ACTIONS(1928), + [anon_sym_PIPE_AMP] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [anon_sym_EQ_TILDE] = ACTIONS(1930), + [anon_sym_EQ_EQ] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1928), + [anon_sym_LT_LT_LT] = ACTIONS(1928), + [sym__special_characters] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1928), + [anon_sym_DOLLAR] = ACTIONS(1930), + [sym_raw_string] = ACTIONS(1928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), + [anon_sym_BQUOTE] = ACTIONS(1928), + [anon_sym_LT_LPAREN] = ACTIONS(1928), + [anon_sym_GT_LPAREN] = ACTIONS(1928), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [2570] = { + [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_SEMI_SEMI] = ACTIONS(1928), + [anon_sym_PIPE_AMP] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [anon_sym_EQ_TILDE] = ACTIONS(1930), + [anon_sym_EQ_EQ] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1928), + [anon_sym_LT_LT_LT] = ACTIONS(1928), + [sym__special_characters] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1928), + [anon_sym_DOLLAR] = ACTIONS(1930), + [sym_raw_string] = ACTIONS(1928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1928), + [anon_sym_BQUOTE] = ACTIONS(1928), + [anon_sym_LT_LPAREN] = ACTIONS(1928), + [anon_sym_GT_LPAREN] = ACTIONS(1928), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [2571] = { + [aux_sym_concatenation_repeat1] = STATE(2779), + [sym__simple_heredoc_body] = ACTIONS(661), + [sym__heredoc_body_beginning] = ACTIONS(661), + [sym_file_descriptor] = ACTIONS(661), + [sym__concat] = ACTIONS(6330), + [anon_sym_esac] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_AMP_GT] = ACTIONS(665), + [anon_sym_AMP_GT_GT] = ACTIONS(661), + [anon_sym_LT_AMP] = ACTIONS(661), + [anon_sym_GT_AMP] = ACTIONS(661), + [anon_sym_LT_LT] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(661), + [anon_sym_LT_LT_LT] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [2572] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(2782), + [anon_sym_DQUOTE] = ACTIONS(6332), + [anon_sym_DOLLAR] = ACTIONS(6334), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [2573] = { + [sym_string] = STATE(2784), + [anon_sym_DQUOTE] = ACTIONS(5864), + [anon_sym_DOLLAR] = ACTIONS(6336), + [sym_raw_string] = ACTIONS(6338), + [anon_sym_POUND] = ACTIONS(6336), + [anon_sym_DASH] = ACTIONS(6336), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(6336), + [anon_sym_AT] = ACTIONS(6336), + [anon_sym_QMARK] = ACTIONS(6336), + [anon_sym_0] = ACTIONS(6342), + [anon_sym__] = ACTIONS(6342), + }, + [2574] = { + [aux_sym_concatenation_repeat1] = STATE(2779), + [sym__simple_heredoc_body] = ACTIONS(679), + [sym__heredoc_body_beginning] = ACTIONS(679), + [sym_file_descriptor] = ACTIONS(679), + [sym__concat] = ACTIONS(6330), + [anon_sym_esac] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_LT_LT_DASH] = ACTIONS(679), + [anon_sym_LT_LT_LT] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [2575] = { + [sym_subscript] = STATE(2790), + [sym_variable_name] = ACTIONS(6344), + [anon_sym_BANG] = ACTIONS(6346), + [anon_sym_DOLLAR] = ACTIONS(6348), + [anon_sym_POUND] = ACTIONS(6346), + [anon_sym_DASH] = ACTIONS(6348), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6350), + [anon_sym_STAR] = ACTIONS(6348), + [anon_sym_AT] = ACTIONS(6348), + [anon_sym_QMARK] = ACTIONS(6348), + [anon_sym_0] = ACTIONS(6352), + [anon_sym__] = ACTIONS(6352), + }, + [2576] = { + [sym__terminated_statement] = STATE(2793), + [sym_for_statement] = STATE(2791), + [sym_c_style_for_statement] = STATE(2791), + [sym_while_statement] = STATE(2791), + [sym_if_statement] = STATE(2791), + [sym_case_statement] = STATE(2791), + [sym_function_definition] = STATE(2791), + [sym_subshell] = STATE(2791), + [sym_pipeline] = STATE(2791), + [sym_list] = STATE(2791), + [sym_negated_command] = STATE(2791), + [sym_test_command] = STATE(2791), + [sym_declaration_command] = STATE(2791), + [sym_unset_command] = STATE(2791), + [sym_command] = STATE(2791), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2792), + [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(2793), + [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), + }, + [2577] = { + [sym__terminated_statement] = STATE(2796), + [sym_for_statement] = STATE(2794), + [sym_c_style_for_statement] = STATE(2794), + [sym_while_statement] = STATE(2794), + [sym_if_statement] = STATE(2794), + [sym_case_statement] = STATE(2794), + [sym_function_definition] = STATE(2794), + [sym_subshell] = STATE(2794), + [sym_pipeline] = STATE(2794), + [sym_list] = STATE(2794), + [sym_negated_command] = STATE(2794), + [sym_test_command] = STATE(2794), + [sym_declaration_command] = STATE(2794), + [sym_unset_command] = STATE(2794), + [sym_command] = STATE(2794), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2795), + [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(2796), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [2578] = { + [sym__terminated_statement] = STATE(2799), + [sym_for_statement] = STATE(2797), + [sym_c_style_for_statement] = STATE(2797), + [sym_while_statement] = STATE(2797), + [sym_if_statement] = STATE(2797), + [sym_case_statement] = STATE(2797), + [sym_function_definition] = STATE(2797), + [sym_subshell] = STATE(2797), + [sym_pipeline] = STATE(2797), + [sym_list] = STATE(2797), + [sym_negated_command] = STATE(2797), + [sym_test_command] = STATE(2797), + [sym_declaration_command] = STATE(2797), + [sym_unset_command] = STATE(2797), + [sym_command] = STATE(2797), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2798), + [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(2799), + [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), + }, + [2579] = { + [aux_sym_concatenation_repeat1] = STATE(2779), + [sym__simple_heredoc_body] = ACTIONS(1936), + [sym__heredoc_body_beginning] = ACTIONS(1936), + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(6330), + [anon_sym_esac] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1936), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1936), + [anon_sym_LT_AMP] = ACTIONS(1936), + [anon_sym_GT_AMP] = ACTIONS(1936), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1936), + [anon_sym_LT_LT_LT] = ACTIONS(1936), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1938), + }, + [2580] = { + [aux_sym_concatenation_repeat1] = STATE(2779), + [sym__simple_heredoc_body] = ACTIONS(1940), + [sym__heredoc_body_beginning] = ACTIONS(1940), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(6330), + [anon_sym_esac] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), + }, + [2581] = { + [sym_file_redirect] = STATE(2581), + [sym_heredoc_redirect] = STATE(2581), + [sym_herestring_redirect] = STATE(2581), + [aux_sym_while_statement_repeat1] = STATE(2581), + [sym__simple_heredoc_body] = ACTIONS(1948), + [sym__heredoc_body_beginning] = ACTIONS(1948), + [sym_file_descriptor] = ACTIONS(6354), + [anon_sym_esac] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), + [anon_sym_PIPE_AMP] = ACTIONS(1948), + [anon_sym_AMP_AMP] = ACTIONS(1948), + [anon_sym_PIPE_PIPE] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(6357), + [anon_sym_GT] = ACTIONS(6357), + [anon_sym_GT_GT] = ACTIONS(6360), + [anon_sym_AMP_GT] = ACTIONS(6357), + [anon_sym_AMP_GT_GT] = ACTIONS(6360), + [anon_sym_LT_AMP] = ACTIONS(6360), + [anon_sym_GT_AMP] = ACTIONS(6360), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(6363), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1953), + }, + [2582] = { + [sym_file_redirect] = STATE(2581), + [sym_heredoc_redirect] = STATE(2581), + [sym_heredoc_body] = STATE(930), + [sym_herestring_redirect] = STATE(2581), + [aux_sym_while_statement_repeat1] = STATE(2581), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), + [anon_sym_PIPE_AMP] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_AMP_GT] = ACTIONS(5330), + [anon_sym_AMP_GT_GT] = ACTIONS(5332), + [anon_sym_LT_AMP] = ACTIONS(5332), + [anon_sym_GT_AMP] = ACTIONS(5332), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(5334), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1946), + }, + [2583] = { + [sym_concatenation] = STATE(2583), + [sym_string] = STATE(2317), + [sym_simple_expansion] = STATE(2317), + [sym_string_expansion] = STATE(2317), + [sym_expansion] = STATE(2317), + [sym_command_substitution] = STATE(2317), + [sym_process_substitution] = STATE(2317), + [aux_sym_command_repeat2] = STATE(2583), + [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_SEMI_SEMI] = ACTIONS(1928), + [anon_sym_PIPE_AMP] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [anon_sym_EQ_TILDE] = ACTIONS(6366), + [anon_sym_EQ_EQ] = ACTIONS(6366), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1930), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_LT_LT_DASH] = ACTIONS(1928), + [anon_sym_LT_LT_LT] = ACTIONS(1928), + [sym__special_characters] = ACTIONS(6369), + [anon_sym_DQUOTE] = ACTIONS(6372), + [anon_sym_DOLLAR] = ACTIONS(6375), + [sym_raw_string] = ACTIONS(6378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6384), + [anon_sym_BQUOTE] = ACTIONS(6387), + [anon_sym_LT_LPAREN] = ACTIONS(6390), + [anon_sym_GT_LPAREN] = ACTIONS(6390), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6393), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + }, + [2584] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_esac] = ACTIONS(6396), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(6398), + [anon_sym_DQUOTE] = ACTIONS(6400), + [anon_sym_DOLLAR] = ACTIONS(6398), + [sym_raw_string] = ACTIONS(6400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6400), + [anon_sym_BQUOTE] = ACTIONS(6400), + [anon_sym_LT_LPAREN] = ACTIONS(6400), + [anon_sym_GT_LPAREN] = ACTIONS(6400), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6398), + }, + [2585] = { + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(5324), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [2586] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(5324), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [2587] = { + [sym_file_redirect] = STATE(2800), + [sym_heredoc_redirect] = STATE(2800), + [sym_heredoc_body] = STATE(930), + [sym_herestring_redirect] = STATE(2800), + [sym_concatenation] = STATE(2583), + [sym_string] = STATE(2317), + [sym_simple_expansion] = STATE(2317), + [sym_string_expansion] = STATE(2317), + [sym_expansion] = STATE(2317), + [sym_command_substitution] = STATE(2317), + [sym_process_substitution] = STATE(2317), + [aux_sym_while_statement_repeat1] = STATE(2800), + [aux_sym_command_repeat2] = STATE(2583), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_SEMI_SEMI] = ACTIONS(1944), + [anon_sym_PIPE_AMP] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_EQ_TILDE] = ACTIONS(5328), + [anon_sym_EQ_EQ] = ACTIONS(5328), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_AMP_GT] = ACTIONS(5330), + [anon_sym_AMP_GT_GT] = ACTIONS(5332), + [anon_sym_LT_AMP] = ACTIONS(5332), + [anon_sym_GT_AMP] = ACTIONS(5332), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(5334), + [sym__special_characters] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(5338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5340), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_LF] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1946), + }, + [2588] = { + [anon_sym_esac] = ACTIONS(6396), + [sym__special_characters] = ACTIONS(6400), + [anon_sym_DQUOTE] = ACTIONS(6400), + [anon_sym_DOLLAR] = ACTIONS(6398), + [sym_raw_string] = ACTIONS(6400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6400), + [anon_sym_BQUOTE] = ACTIONS(6400), + [anon_sym_LT_LPAREN] = ACTIONS(6400), + [anon_sym_GT_LPAREN] = ACTIONS(6400), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6398), + }, + [2589] = { + [anon_sym_esac] = ACTIONS(6402), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(6404), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [2590] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_esac] = ACTIONS(6396), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(6404), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [2591] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_esac] = ACTIONS(6406), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(6408), + [anon_sym_DQUOTE] = ACTIONS(6410), + [anon_sym_DOLLAR] = ACTIONS(6408), + [sym_raw_string] = ACTIONS(6410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6410), + [anon_sym_BQUOTE] = ACTIONS(6410), + [anon_sym_LT_LPAREN] = ACTIONS(6410), + [anon_sym_GT_LPAREN] = ACTIONS(6410), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6408), + }, + [2592] = { + [anon_sym_esac] = ACTIONS(6406), + [sym__special_characters] = ACTIONS(6410), + [anon_sym_DQUOTE] = ACTIONS(6410), + [anon_sym_DOLLAR] = ACTIONS(6408), + [sym_raw_string] = ACTIONS(6410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6410), + [anon_sym_BQUOTE] = ACTIONS(6410), + [anon_sym_LT_LPAREN] = ACTIONS(6410), + [anon_sym_GT_LPAREN] = ACTIONS(6410), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6408), + }, + [2593] = { + [anon_sym_esac] = ACTIONS(6412), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(6414), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [2594] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_esac] = ACTIONS(6406), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_SEMI_SEMI] = ACTIONS(6414), + [anon_sym_PIPE_AMP] = ACTIONS(5318), + [anon_sym_AMP_AMP] = ACTIONS(5320), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(5322), + [anon_sym_LF] = ACTIONS(5324), + [anon_sym_AMP] = ACTIONS(5322), + }, + [2595] = { + [sym__special_characters] = ACTIONS(5238), + [anon_sym_DQUOTE] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(5240), + [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(53), + [sym_word] = ACTIONS(5238), + }, + [2596] = { + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(6416), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(295), + }, + [2597] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(6416), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(295), + }, + [2598] = { + [sym__terminated_statement] = STATE(2807), + [sym_for_statement] = STATE(2805), + [sym_c_style_for_statement] = STATE(2805), + [sym_while_statement] = STATE(2805), + [sym_if_statement] = STATE(2805), + [sym_case_statement] = STATE(2805), + [sym_function_definition] = STATE(2805), + [sym_subshell] = STATE(2805), + [sym_pipeline] = STATE(2805), + [sym_list] = STATE(2805), + [sym_negated_command] = STATE(2805), + [sym_test_command] = STATE(2805), + [sym_declaration_command] = STATE(2805), + [sym_unset_command] = STATE(2805), + [sym_command] = STATE(2805), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2806), + [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(2807), + [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(6418), + [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), + }, + [2599] = { + [sym__terminated_statement] = STATE(2808), + [sym_for_statement] = STATE(2805), + [sym_c_style_for_statement] = STATE(2805), + [sym_while_statement] = STATE(2805), + [sym_if_statement] = STATE(2805), + [sym_case_statement] = STATE(2805), + [sym_function_definition] = STATE(2805), + [sym_subshell] = STATE(2805), + [sym_pipeline] = STATE(2805), + [sym_list] = STATE(2805), + [sym_negated_command] = STATE(2805), + [sym_test_command] = STATE(2805), + [sym_declaration_command] = STATE(2805), + [sym_unset_command] = STATE(2805), + [sym_command] = STATE(2805), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2806), + [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(2808), + [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(6418), + [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), + }, + [2600] = { + [sym__special_characters] = ACTIONS(5351), + [anon_sym_DQUOTE] = ACTIONS(5351), + [anon_sym_DOLLAR] = ACTIONS(5353), + [sym_raw_string] = ACTIONS(5351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5351), + [anon_sym_BQUOTE] = ACTIONS(5351), + [anon_sym_LT_LPAREN] = ACTIONS(5351), + [anon_sym_GT_LPAREN] = ACTIONS(5351), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5351), + }, + [2601] = { + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(6420), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(295), + }, + [2602] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(6420), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(295), + }, + [2603] = { + [sym__terminated_statement] = STATE(2807), + [sym_for_statement] = STATE(2811), + [sym_c_style_for_statement] = STATE(2811), + [sym_while_statement] = STATE(2811), + [sym_if_statement] = STATE(2811), + [sym_case_statement] = STATE(2811), + [sym_function_definition] = STATE(2811), + [sym_subshell] = STATE(2811), + [sym_pipeline] = STATE(2811), + [sym_list] = STATE(2811), + [sym_negated_command] = STATE(2811), + [sym_test_command] = STATE(2811), + [sym_declaration_command] = STATE(2811), + [sym_unset_command] = STATE(2811), + [sym_command] = STATE(2811), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2812), + [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(2807), + [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(6422), + [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), + }, + [2604] = { + [sym__terminated_statement] = STATE(2813), + [sym_for_statement] = STATE(2811), + [sym_c_style_for_statement] = STATE(2811), + [sym_while_statement] = STATE(2811), + [sym_if_statement] = STATE(2811), + [sym_case_statement] = STATE(2811), + [sym_function_definition] = STATE(2811), + [sym_subshell] = STATE(2811), + [sym_pipeline] = STATE(2811), + [sym_list] = STATE(2811), + [sym_negated_command] = STATE(2811), + [sym_test_command] = STATE(2811), + [sym_declaration_command] = STATE(2811), + [sym_unset_command] = STATE(2811), + [sym_command] = STATE(2811), + [sym_command_name] = STATE(27), + [sym_variable_assignment] = STATE(2812), + [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(2813), + [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(6422), + [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), + }, + [2605] = { + [sym_file_descriptor] = ACTIONS(3903), + [sym__concat] = ACTIONS(3903), + [anon_sym_esac] = ACTIONS(3903), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3903), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_GT_GT] = ACTIONS(3903), + [anon_sym_AMP_GT] = ACTIONS(3905), + [anon_sym_AMP_GT_GT] = ACTIONS(3903), + [anon_sym_LT_AMP] = ACTIONS(3903), + [anon_sym_GT_AMP] = ACTIONS(3903), + [anon_sym_LT_LT] = ACTIONS(3905), + [anon_sym_LT_LT_DASH] = ACTIONS(3903), + [anon_sym_LT_LT_LT] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + }, + [2606] = { + [sym_file_descriptor] = ACTIONS(3911), + [sym__concat] = ACTIONS(3911), + [anon_sym_esac] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_AMP_GT] = ACTIONS(3913), + [anon_sym_AMP_GT_GT] = ACTIONS(3911), + [anon_sym_LT_AMP] = ACTIONS(3911), + [anon_sym_GT_AMP] = ACTIONS(3911), + [anon_sym_LT_LT] = ACTIONS(3913), + [anon_sym_LT_LT_DASH] = ACTIONS(3911), + [anon_sym_LT_LT_LT] = ACTIONS(3911), + [anon_sym_BQUOTE] = ACTIONS(3911), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [2607] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6424), + [sym_comment] = ACTIONS(53), + }, + [2608] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6426), + [sym_comment] = ACTIONS(53), + }, + [2609] = { + [anon_sym_RBRACE] = ACTIONS(6426), + [sym_comment] = ACTIONS(53), + }, + [2610] = { + [sym_concatenation] = STATE(2817), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2817), + [anon_sym_RBRACE] = ACTIONS(6428), + [anon_sym_EQ] = ACTIONS(6430), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6432), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6430), + [anon_sym_COLON_QMARK] = ACTIONS(6430), + [anon_sym_COLON_DASH] = ACTIONS(6430), + [anon_sym_PERCENT] = ACTIONS(6430), + [anon_sym_DASH] = ACTIONS(6430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2611] = { + [sym_file_descriptor] = ACTIONS(3975), + [sym__concat] = ACTIONS(3975), + [anon_sym_esac] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3975), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_GT] = ACTIONS(3975), + [anon_sym_AMP_GT] = ACTIONS(3977), + [anon_sym_AMP_GT_GT] = ACTIONS(3975), + [anon_sym_LT_AMP] = ACTIONS(3975), + [anon_sym_GT_AMP] = ACTIONS(3975), + [anon_sym_LT_LT] = ACTIONS(3977), + [anon_sym_LT_LT_DASH] = ACTIONS(3975), + [anon_sym_LT_LT_LT] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), + }, + [2612] = { + [sym_concatenation] = STATE(2819), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2819), + [anon_sym_RBRACE] = ACTIONS(6434), + [anon_sym_EQ] = ACTIONS(6436), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6436), + [anon_sym_COLON_QMARK] = ACTIONS(6436), + [anon_sym_COLON_DASH] = ACTIONS(6436), + [anon_sym_PERCENT] = ACTIONS(6436), + [anon_sym_DASH] = ACTIONS(6436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2613] = { + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [anon_sym_esac] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [2614] = { + [sym_concatenation] = STATE(2821), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2821), + [anon_sym_RBRACE] = ACTIONS(6440), + [anon_sym_EQ] = ACTIONS(6442), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6442), + [anon_sym_COLON_QMARK] = ACTIONS(6442), + [anon_sym_COLON_DASH] = ACTIONS(6442), + [anon_sym_PERCENT] = ACTIONS(6442), + [anon_sym_DASH] = ACTIONS(6442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2615] = { + [sym_file_descriptor] = ACTIONS(4040), + [sym__concat] = ACTIONS(4040), + [anon_sym_esac] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_RPAREN] = ACTIONS(4040), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_GT_GT] = ACTIONS(4040), + [anon_sym_AMP_GT] = ACTIONS(4042), + [anon_sym_AMP_GT_GT] = ACTIONS(4040), + [anon_sym_LT_AMP] = ACTIONS(4040), + [anon_sym_GT_AMP] = ACTIONS(4040), + [anon_sym_LT_LT] = ACTIONS(4042), + [anon_sym_LT_LT_DASH] = ACTIONS(4040), + [anon_sym_LT_LT_LT] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), + }, + [2616] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6446), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2617] = { + [sym_file_descriptor] = ACTIONS(4062), + [sym__concat] = ACTIONS(4062), + [anon_sym_esac] = ACTIONS(4062), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4062), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4064), + [anon_sym_GT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_AMP_GT] = ACTIONS(4064), + [anon_sym_AMP_GT_GT] = ACTIONS(4062), + [anon_sym_LT_AMP] = ACTIONS(4062), + [anon_sym_GT_AMP] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_LT_LT_DASH] = ACTIONS(4062), + [anon_sym_LT_LT_LT] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), + }, + [2618] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6448), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2619] = { + [sym_file_descriptor] = ACTIONS(4068), + [sym__concat] = ACTIONS(4068), + [anon_sym_esac] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4068), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_GT_GT] = ACTIONS(4068), + [anon_sym_AMP_GT] = ACTIONS(4070), + [anon_sym_AMP_GT_GT] = ACTIONS(4068), + [anon_sym_LT_AMP] = ACTIONS(4068), + [anon_sym_GT_AMP] = ACTIONS(4068), + [anon_sym_LT_LT] = ACTIONS(4070), + [anon_sym_LT_LT_DASH] = ACTIONS(4068), + [anon_sym_LT_LT_LT] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), + }, + [2620] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6450), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2621] = { + [sym_file_descriptor] = ACTIONS(4074), + [sym__concat] = ACTIONS(4074), + [anon_sym_esac] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_AMP_GT] = ACTIONS(4076), + [anon_sym_AMP_GT_GT] = ACTIONS(4074), + [anon_sym_LT_AMP] = ACTIONS(4074), + [anon_sym_GT_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_LT_LT_DASH] = ACTIONS(4074), + [anon_sym_LT_LT_LT] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), + }, + [2622] = { + [sym_file_descriptor] = ACTIONS(4098), + [sym__concat] = ACTIONS(4098), + [anon_sym_esac] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_GT_GT] = ACTIONS(4098), + [anon_sym_AMP_GT] = ACTIONS(4100), + [anon_sym_AMP_GT_GT] = ACTIONS(4098), + [anon_sym_LT_AMP] = ACTIONS(4098), + [anon_sym_GT_AMP] = ACTIONS(4098), + [anon_sym_LT_LT] = ACTIONS(4100), + [anon_sym_LT_LT_DASH] = ACTIONS(4098), + [anon_sym_LT_LT_LT] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), + }, + [2623] = { + [sym__concat] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + }, + [2624] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_RBRACE] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + }, + [2625] = { + [sym__concat] = ACTIONS(4893), + [anon_sym_RBRACE] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + }, + [2626] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6452), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2627] = { + [sym__concat] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + }, + [2628] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6454), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2629] = { + [sym__concat] = ACTIONS(4905), + [anon_sym_RBRACE] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + }, + [2630] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6456), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2631] = { + [sym__concat] = ACTIONS(4947), + [anon_sym_RBRACE] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + }, + [2632] = { + [sym__concat] = ACTIONS(4955), + [anon_sym_RBRACE] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + }, + [2633] = { + [sym__concat] = ACTIONS(4959), + [anon_sym_RBRACE] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + }, + [2634] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_RBRACE] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5526), + [sym__special_characters] = ACTIONS(5526), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_POUND] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_COLON] = ACTIONS(5526), + [anon_sym_COLON_QMARK] = ACTIONS(5526), + [anon_sym_COLON_DASH] = ACTIONS(5526), + [anon_sym_PERCENT] = ACTIONS(5526), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(5526), + }, + [2635] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_RBRACE] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(5530), + [sym__special_characters] = ACTIONS(5530), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [sym_raw_string] = ACTIONS(5528), + [anon_sym_POUND] = ACTIONS(5528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5528), + [anon_sym_COLON] = ACTIONS(5530), + [anon_sym_COLON_QMARK] = ACTIONS(5530), + [anon_sym_COLON_DASH] = ACTIONS(5530), + [anon_sym_PERCENT] = ACTIONS(5530), + [anon_sym_DASH] = ACTIONS(5530), + [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(243), + [sym_word] = ACTIONS(5530), + }, + [2636] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_RBRACE] = ACTIONS(5532), + [anon_sym_EQ] = ACTIONS(5534), + [sym__special_characters] = ACTIONS(5534), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_POUND] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_COLON] = ACTIONS(5534), + [anon_sym_COLON_QMARK] = ACTIONS(5534), + [anon_sym_COLON_DASH] = ACTIONS(5534), + [anon_sym_PERCENT] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5534), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(5534), + }, + [2637] = { + [sym__heredoc_body_middle] = ACTIONS(5524), + [sym__heredoc_body_end] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + }, + [2638] = { + [sym__heredoc_body_middle] = ACTIONS(5528), + [sym__heredoc_body_end] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5528), + [sym_comment] = ACTIONS(53), + }, + [2639] = { + [sym__heredoc_body_middle] = ACTIONS(5532), + [sym__heredoc_body_end] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + }, + [2640] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_RPAREN] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5524), + }, + [2641] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_RPAREN] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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(5528), + }, + [2642] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_RPAREN] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5532), + }, + [2643] = { + [sym__concat] = ACTIONS(4885), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_EQ_TILDE] = ACTIONS(4885), + [anon_sym_EQ_EQ] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4885), + [anon_sym_GT] = ACTIONS(4885), + [anon_sym_BANG_EQ] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4885), + }, + [2644] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4889), + [anon_sym_EQ_EQ] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4889), + [anon_sym_GT] = ACTIONS(4889), + [anon_sym_BANG_EQ] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4889), + }, + [2645] = { + [sym__concat] = ACTIONS(4893), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [anon_sym_EQ_TILDE] = ACTIONS(4893), + [anon_sym_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4893), + }, + [2646] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6458), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2647] = { + [sym__concat] = ACTIONS(4899), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [anon_sym_EQ_TILDE] = ACTIONS(4899), + [anon_sym_EQ_EQ] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4899), + [anon_sym_GT] = ACTIONS(4899), + [anon_sym_BANG_EQ] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4899), + }, + [2648] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6460), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2649] = { + [sym__concat] = ACTIONS(4905), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [anon_sym_EQ_TILDE] = ACTIONS(4905), + [anon_sym_EQ_EQ] = ACTIONS(4905), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG_EQ] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4905), + }, + [2650] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6462), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2651] = { + [sym__concat] = ACTIONS(4947), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_EQ_TILDE] = ACTIONS(4947), + [anon_sym_EQ_EQ] = ACTIONS(4947), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_BANG_EQ] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4947), + }, + [2652] = { + [sym__concat] = ACTIONS(4955), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_EQ_TILDE] = ACTIONS(4955), + [anon_sym_EQ_EQ] = ACTIONS(4955), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG_EQ] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4955), + }, + [2653] = { + [sym__concat] = ACTIONS(4959), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_EQ_TILDE] = ACTIONS(4959), + [anon_sym_EQ_EQ] = ACTIONS(4959), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG_EQ] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4959), + }, + [2654] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5526), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5524), + }, + [2655] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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(5530), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5528), + }, + [2656] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5534), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5532), + }, + [2657] = { + [sym_file_descriptor] = ACTIONS(2014), + [sym_variable_name] = ACTIONS(2014), + [anon_sym_esac] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_SEMI_SEMI] = ACTIONS(2014), + [anon_sym_PIPE_AMP] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2016), + [anon_sym_GT] = ACTIONS(2016), + [anon_sym_GT_GT] = ACTIONS(2014), + [anon_sym_AMP_GT] = ACTIONS(2016), + [anon_sym_AMP_GT_GT] = ACTIONS(2014), + [anon_sym_LT_AMP] = ACTIONS(2014), + [anon_sym_GT_AMP] = ACTIONS(2014), + [sym__special_characters] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [sym_raw_string] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2014), + [anon_sym_BQUOTE] = ACTIONS(2014), + [anon_sym_LT_LPAREN] = ACTIONS(2014), + [anon_sym_GT_LPAREN] = ACTIONS(2014), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_LF] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2016), + }, + [2658] = { + [sym_concatenation] = STATE(960), + [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(960), + [anon_sym_RPAREN] = ACTIONS(6464), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1011), + }, + [2659] = { + [sym_string] = STATE(2832), + [sym_simple_expansion] = STATE(2832), + [sym_string_expansion] = STATE(2832), + [sym_expansion] = STATE(2832), + [sym_command_substitution] = STATE(2832), + [sym_process_substitution] = STATE(2832), + [sym__special_characters] = ACTIONS(6466), + [anon_sym_DQUOTE] = ACTIONS(5710), + [anon_sym_DOLLAR] = ACTIONS(5712), + [sym_raw_string] = ACTIONS(6466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5718), + [anon_sym_BQUOTE] = ACTIONS(5720), + [anon_sym_LT_LPAREN] = ACTIONS(5722), + [anon_sym_GT_LPAREN] = ACTIONS(5722), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6466), + }, + [2660] = { + [aux_sym_concatenation_repeat1] = STATE(2833), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(6042), + [sym_variable_name] = ACTIONS(695), + [anon_sym_esac] = ACTIONS(697), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [sym__special_characters] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [sym_raw_string] = ACTIONS(695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LT_LPAREN] = ACTIONS(695), + [anon_sym_GT_LPAREN] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [2661] = { + [sym_file_descriptor] = ACTIONS(699), + [sym__concat] = ACTIONS(699), + [sym_variable_name] = ACTIONS(699), + [anon_sym_esac] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(699), + [anon_sym_LT_AMP] = ACTIONS(699), + [anon_sym_GT_AMP] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), + }, + [2662] = { + [anon_sym_DQUOTE] = ACTIONS(6468), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [2663] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(6468), + [anon_sym_DOLLAR] = ACTIONS(6470), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [2664] = { + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [sym_variable_name] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = 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(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [2665] = { + [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_SEMI_SEMI] = 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(737), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [2666] = { + [sym_file_descriptor] = ACTIONS(739), + [sym__concat] = ACTIONS(739), + [sym_variable_name] = ACTIONS(739), + [anon_sym_esac] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [sym__special_characters] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(739), + [anon_sym_DOLLAR] = ACTIONS(741), + [sym_raw_string] = ACTIONS(739), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(739), + [anon_sym_GT_LPAREN] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), + }, + [2667] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(6472), + [sym_comment] = ACTIONS(53), + }, + [2668] = { + [sym_subscript] = STATE(2840), + [sym_variable_name] = ACTIONS(6474), + [anon_sym_DOLLAR] = ACTIONS(6476), + [anon_sym_DASH] = ACTIONS(6476), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6478), + [anon_sym_STAR] = ACTIONS(6476), + [anon_sym_AT] = ACTIONS(6476), + [anon_sym_QMARK] = ACTIONS(6476), + [anon_sym_0] = ACTIONS(6480), + [anon_sym__] = ACTIONS(6480), + }, + [2669] = { + [sym_concatenation] = STATE(2843), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2843), + [anon_sym_RBRACE] = ACTIONS(6482), + [anon_sym_EQ] = ACTIONS(6484), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6488), + [anon_sym_COLON] = ACTIONS(6484), + [anon_sym_COLON_QMARK] = ACTIONS(6484), + [anon_sym_COLON_DASH] = ACTIONS(6484), + [anon_sym_PERCENT] = ACTIONS(6484), + [anon_sym_DASH] = ACTIONS(6484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2670] = { + [sym_concatenation] = STATE(2846), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2846), + [anon_sym_RBRACE] = ACTIONS(6490), + [anon_sym_EQ] = ACTIONS(6492), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6494), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6496), + [anon_sym_COLON] = ACTIONS(6492), + [anon_sym_COLON_QMARK] = ACTIONS(6492), + [anon_sym_COLON_DASH] = ACTIONS(6492), + [anon_sym_PERCENT] = ACTIONS(6492), + [anon_sym_DASH] = ACTIONS(6492), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2671] = { + [sym_concatenation] = STATE(2849), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2849), + [anon_sym_RBRACE] = ACTIONS(6498), + [anon_sym_EQ] = ACTIONS(6500), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6504), + [anon_sym_COLON] = ACTIONS(6500), + [anon_sym_COLON_QMARK] = ACTIONS(6500), + [anon_sym_COLON_DASH] = ACTIONS(6500), + [anon_sym_PERCENT] = ACTIONS(6500), + [anon_sym_DASH] = ACTIONS(6500), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2672] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6506), + [anon_sym_SEMI_SEMI] = ACTIONS(6508), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6510), + [anon_sym_LF] = ACTIONS(6508), + [anon_sym_AMP] = ACTIONS(6510), + }, + [2673] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6506), + [anon_sym_SEMI_SEMI] = ACTIONS(6508), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6510), + [anon_sym_LF] = ACTIONS(6508), + [anon_sym_AMP] = ACTIONS(6510), + }, + [2674] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2852), + [sym_c_style_for_statement] = STATE(2852), + [sym_while_statement] = STATE(2852), + [sym_if_statement] = STATE(2852), + [sym_case_statement] = STATE(2852), + [sym_function_definition] = STATE(2852), + [sym_subshell] = STATE(2852), + [sym_pipeline] = STATE(2852), + [sym_list] = STATE(2852), + [sym_negated_command] = STATE(2852), + [sym_test_command] = STATE(2852), + [sym_declaration_command] = STATE(2852), + [sym_unset_command] = STATE(2852), + [sym_command] = STATE(2852), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2853), + [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), + }, + [2675] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6512), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(6506), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6514), + [anon_sym_LF] = ACTIONS(6512), + [anon_sym_AMP] = ACTIONS(6514), + }, + [2676] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6512), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(6506), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6514), + [anon_sym_LF] = ACTIONS(6512), + [anon_sym_AMP] = ACTIONS(6514), + }, + [2677] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2855), + [sym_c_style_for_statement] = STATE(2855), + [sym_while_statement] = STATE(2855), + [sym_if_statement] = STATE(2855), + [sym_case_statement] = STATE(2855), + [sym_function_definition] = STATE(2855), + [sym_subshell] = STATE(2855), + [sym_pipeline] = STATE(2855), + [sym_list] = STATE(2855), + [sym_negated_command] = STATE(2855), + [sym_test_command] = STATE(2855), + [sym_declaration_command] = STATE(2855), + [sym_unset_command] = STATE(2855), + [sym_command] = STATE(2855), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2856), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [2678] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6516), + [anon_sym_SEMI_SEMI] = ACTIONS(6518), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6520), + [anon_sym_LF] = ACTIONS(6518), + [anon_sym_AMP] = ACTIONS(6520), + }, + [2679] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6516), + [anon_sym_SEMI_SEMI] = ACTIONS(6518), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6520), + [anon_sym_LF] = ACTIONS(6518), + [anon_sym_AMP] = ACTIONS(6520), + }, + [2680] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2859), + [sym_c_style_for_statement] = STATE(2859), + [sym_while_statement] = STATE(2859), + [sym_if_statement] = STATE(2859), + [sym_case_statement] = STATE(2859), + [sym_function_definition] = STATE(2859), + [sym_subshell] = STATE(2859), + [sym_pipeline] = STATE(2859), + [sym_list] = STATE(2859), + [sym_negated_command] = STATE(2859), + [sym_test_command] = STATE(2859), + [sym_declaration_command] = STATE(2859), + [sym_unset_command] = STATE(2859), + [sym_command] = STATE(2859), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2860), + [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), + }, + [2681] = { + [sym_file_redirect] = STATE(2581), + [sym_heredoc_redirect] = STATE(2581), + [sym_heredoc_body] = STATE(1064), + [sym_herestring_redirect] = STATE(2581), + [aux_sym_while_statement_repeat1] = STATE(2581), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_SEMI_SEMI] = ACTIONS(2256), + [anon_sym_PIPE_AMP] = ACTIONS(2256), + [anon_sym_AMP_AMP] = ACTIONS(2256), + [anon_sym_PIPE_PIPE] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_AMP_GT] = ACTIONS(5330), + [anon_sym_AMP_GT_GT] = ACTIONS(5332), + [anon_sym_LT_AMP] = ACTIONS(5332), + [anon_sym_GT_AMP] = ACTIONS(5332), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(5334), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_LF] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2258), + }, + [2682] = { + [sym_compound_statement] = STATE(2861), + [anon_sym_LBRACE] = ACTIONS(441), + [sym_comment] = ACTIONS(53), + }, + [2683] = { + [anon_sym_LT] = ACTIONS(6522), + [anon_sym_GT] = ACTIONS(6522), + [anon_sym_GT_GT] = ACTIONS(6524), + [anon_sym_AMP_GT] = ACTIONS(6522), + [anon_sym_AMP_GT_GT] = ACTIONS(6524), + [anon_sym_LT_AMP] = ACTIONS(6524), + [anon_sym_GT_AMP] = ACTIONS(6524), + [sym_comment] = ACTIONS(53), + }, + [2684] = { + [sym_concatenation] = STATE(1114), + [sym_string] = STATE(2864), + [sym_simple_expansion] = STATE(2864), + [sym_string_expansion] = STATE(2864), + [sym_expansion] = STATE(2864), + [sym_command_substitution] = STATE(2864), + [sym_process_substitution] = STATE(2864), + [sym__special_characters] = ACTIONS(6526), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(6528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6528), + }, + [2685] = { + [anon_sym_LT] = ACTIONS(6530), + [anon_sym_GT] = ACTIONS(6530), + [anon_sym_GT_GT] = ACTIONS(6532), + [anon_sym_AMP_GT] = ACTIONS(6530), + [anon_sym_AMP_GT_GT] = ACTIONS(6532), + [anon_sym_LT_AMP] = ACTIONS(6532), + [anon_sym_GT_AMP] = ACTIONS(6532), + [sym_comment] = ACTIONS(53), + }, + [2686] = { + [sym_concatenation] = STATE(1170), + [sym_string] = STATE(2867), + [sym_simple_expansion] = STATE(2867), + [sym_string_expansion] = STATE(2867), + [sym_expansion] = STATE(2867), + [sym_command_substitution] = STATE(2867), + [sym_process_substitution] = STATE(2867), + [sym__special_characters] = ACTIONS(6534), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(6536), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6536), + }, + [2687] = { + [sym_concatenation] = STATE(1174), + [sym_string] = STATE(2869), + [sym_simple_expansion] = STATE(2869), + [sym_string_expansion] = STATE(2869), + [sym_expansion] = STATE(2869), + [sym_command_substitution] = STATE(2869), + [sym_process_substitution] = STATE(2869), + [sym__special_characters] = ACTIONS(6538), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(6540), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6540), + }, + [2688] = { + [sym_file_redirect] = STATE(2870), + [sym_heredoc_redirect] = STATE(2870), + [sym_herestring_redirect] = STATE(2870), + [aux_sym_while_statement_repeat1] = STATE(2870), + [sym_file_descriptor] = ACTIONS(6074), + [anon_sym_esac] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SEMI_SEMI] = ACTIONS(2553), + [anon_sym_PIPE_AMP] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_PIPE_PIPE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(6076), + [anon_sym_GT] = ACTIONS(6076), + [anon_sym_GT_GT] = ACTIONS(6078), + [anon_sym_AMP_GT] = ACTIONS(6076), + [anon_sym_AMP_GT_GT] = ACTIONS(6078), + [anon_sym_LT_AMP] = ACTIONS(6078), + [anon_sym_GT_AMP] = ACTIONS(6078), + [anon_sym_LT_LT] = ACTIONS(1321), + [anon_sym_LT_LT_DASH] = ACTIONS(1323), + [anon_sym_LT_LT_LT] = ACTIONS(6080), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LF] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + }, + [2689] = { + [sym_variable_name] = ACTIONS(999), + [anon_sym_esac] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [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(1001), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1001), + [sym_word] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(1001), + }, + [2690] = { + [sym_concatenation] = STATE(2872), + [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(2872), + [anon_sym_RPAREN] = ACTIONS(6542), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1011), + }, + [2691] = { + [aux_sym_concatenation_repeat1] = STATE(2489), + [sym__concat] = ACTIONS(5730), + [sym_variable_name] = ACTIONS(1021), + [anon_sym_esac] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_SEMI_SEMI] = ACTIONS(1021), + [anon_sym_PIPE_AMP] = ACTIONS(1021), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1025), + [sym_raw_string] = ACTIONS(1021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1021), + [anon_sym_BQUOTE] = ACTIONS(1021), + [anon_sym_LT_LPAREN] = ACTIONS(1021), + [anon_sym_GT_LPAREN] = ACTIONS(1021), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1025), + [sym_word] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LF] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1025), + }, + [2692] = { + [aux_sym_concatenation_repeat1] = STATE(2489), + [sym__concat] = ACTIONS(5730), + [sym_variable_name] = ACTIONS(999), + [anon_sym_esac] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [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(1001), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1001), + [sym_word] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LF] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(1001), + }, + [2693] = { + [sym__concat] = ACTIONS(1664), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_esac] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1666), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [2694] = { + [aux_sym_concatenation_repeat1] = STATE(2694), + [sym__concat] = ACTIONS(6544), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_esac] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1666), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [2695] = { + [sym__concat] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1673), + [sym_word] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), + }, + [2696] = { + [anon_sym_DQUOTE] = ACTIONS(6547), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [2697] = { + [sym_concatenation] = STATE(2877), + [sym_string] = STATE(2876), + [sym_simple_expansion] = STATE(2876), + [sym_string_expansion] = STATE(2876), + [sym_expansion] = STATE(2876), + [sym_command_substitution] = STATE(2876), + [sym_process_substitution] = STATE(2876), + [anon_sym_RBRACE] = ACTIONS(6549), + [sym__special_characters] = ACTIONS(6551), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6553), + }, + [2698] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(6555), + [sym_comment] = ACTIONS(53), + }, + [2699] = { + [sym_concatenation] = STATE(2881), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2881), + [anon_sym_RBRACE] = ACTIONS(6557), + [anon_sym_EQ] = ACTIONS(6559), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6563), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_COLON_QMARK] = ACTIONS(6559), + [anon_sym_COLON_DASH] = ACTIONS(6559), + [anon_sym_PERCENT] = ACTIONS(6559), + [anon_sym_DASH] = ACTIONS(6559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2700] = { + [sym_concatenation] = STATE(2884), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2884), + [anon_sym_RBRACE] = ACTIONS(6565), + [anon_sym_EQ] = ACTIONS(6567), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6571), + [anon_sym_COLON] = ACTIONS(6567), + [anon_sym_COLON_QMARK] = ACTIONS(6567), + [anon_sym_COLON_DASH] = ACTIONS(6567), + [anon_sym_PERCENT] = ACTIONS(6567), + [anon_sym_DASH] = ACTIONS(6567), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2701] = { + [sym_concatenation] = STATE(2886), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2886), + [anon_sym_RBRACE] = ACTIONS(6549), + [anon_sym_EQ] = ACTIONS(6573), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6575), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6577), + [anon_sym_COLON] = ACTIONS(6573), + [anon_sym_COLON_QMARK] = ACTIONS(6573), + [anon_sym_COLON_DASH] = ACTIONS(6573), + [anon_sym_PERCENT] = ACTIONS(6573), + [anon_sym_DASH] = ACTIONS(6573), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2702] = { + [sym__concat] = ACTIONS(1788), + [sym_variable_name] = ACTIONS(1788), + [anon_sym_esac] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1790), + [sym_word] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), + }, + [2703] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6579), + }, + [2704] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6581), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2705] = { + [sym__concat] = ACTIONS(1832), + [sym_variable_name] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [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(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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [2706] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6583), + }, + [2707] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6585), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2708] = { + [sym__concat] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [2709] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6587), + }, + [2710] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6549), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2711] = { + [sym__concat] = ACTIONS(1846), + [sym_variable_name] = ACTIONS(1846), + [anon_sym_esac] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [2712] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6589), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2713] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6589), + [anon_sym_SEMI_SEMI] = ACTIONS(6591), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6593), + [anon_sym_LF] = ACTIONS(6591), + [anon_sym_AMP] = ACTIONS(6593), + }, + [2714] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6589), + [anon_sym_SEMI_SEMI] = ACTIONS(6591), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6593), + [anon_sym_LF] = ACTIONS(6591), + [anon_sym_AMP] = ACTIONS(6593), + }, + [2715] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(6589), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2716] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6595), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(6589), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6597), + [anon_sym_LF] = ACTIONS(6595), + [anon_sym_AMP] = ACTIONS(6597), + }, + [2717] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6595), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(6589), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6597), + [anon_sym_LF] = ACTIONS(6595), + [anon_sym_AMP] = ACTIONS(6597), + }, + [2718] = { + [sym__concat] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1880), + [sym_word] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + }, + [2719] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6599), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2720] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6599), + [anon_sym_SEMI_SEMI] = ACTIONS(6601), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6603), + [anon_sym_LF] = ACTIONS(6601), + [anon_sym_AMP] = ACTIONS(6603), + }, + [2721] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6599), + [anon_sym_SEMI_SEMI] = ACTIONS(6601), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6603), + [anon_sym_LF] = ACTIONS(6601), + [anon_sym_AMP] = ACTIONS(6603), + }, + [2722] = { + [sym__concat] = ACTIONS(1664), + [anon_sym_esac] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1666), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [2723] = { + [aux_sym_concatenation_repeat1] = STATE(2723), + [sym__concat] = ACTIONS(6605), + [anon_sym_esac] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1666), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [2724] = { + [sym__concat] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1673), + [sym_word] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), + }, + [2725] = { + [anon_sym_DQUOTE] = ACTIONS(6608), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [2726] = { + [sym_concatenation] = STATE(2901), + [sym_string] = STATE(2900), + [sym_simple_expansion] = STATE(2900), + [sym_string_expansion] = STATE(2900), + [sym_expansion] = STATE(2900), + [sym_command_substitution] = STATE(2900), + [sym_process_substitution] = STATE(2900), + [anon_sym_RBRACE] = ACTIONS(6610), + [sym__special_characters] = ACTIONS(6612), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6614), + }, + [2727] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(6616), + [sym_comment] = ACTIONS(53), + }, + [2728] = { + [sym_concatenation] = STATE(2905), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2905), + [anon_sym_RBRACE] = ACTIONS(6618), + [anon_sym_EQ] = ACTIONS(6620), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(6620), + [anon_sym_COLON_QMARK] = ACTIONS(6620), + [anon_sym_COLON_DASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2729] = { + [sym_concatenation] = STATE(2908), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2908), + [anon_sym_RBRACE] = ACTIONS(6626), + [anon_sym_EQ] = ACTIONS(6628), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6630), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_COLON_QMARK] = ACTIONS(6628), + [anon_sym_COLON_DASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6628), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2730] = { + [sym_concatenation] = STATE(2910), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2910), + [anon_sym_RBRACE] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6634), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6638), + [anon_sym_COLON] = ACTIONS(6634), + [anon_sym_COLON_QMARK] = ACTIONS(6634), + [anon_sym_COLON_DASH] = ACTIONS(6634), + [anon_sym_PERCENT] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6634), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2731] = { + [sym__concat] = ACTIONS(1788), + [anon_sym_esac] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1790), + [sym_word] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), + }, + [2732] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6640), + }, + [2733] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6642), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2734] = { + [sym__concat] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [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(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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [2735] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6644), + }, + [2736] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6646), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2737] = { + [sym__concat] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [2738] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6648), + }, + [2739] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2740] = { + [sym__concat] = ACTIONS(1846), + [anon_sym_esac] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [2741] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6650), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2742] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6650), + [anon_sym_SEMI_SEMI] = ACTIONS(6652), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6654), + [anon_sym_LF] = ACTIONS(6652), + [anon_sym_AMP] = ACTIONS(6654), + }, + [2743] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6650), + [anon_sym_SEMI_SEMI] = ACTIONS(6652), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6654), + [anon_sym_LF] = ACTIONS(6652), + [anon_sym_AMP] = ACTIONS(6654), + }, + [2744] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(6650), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2745] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6656), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(6650), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6658), + [anon_sym_LF] = ACTIONS(6656), + [anon_sym_AMP] = ACTIONS(6658), + }, + [2746] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6656), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(6650), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6658), + [anon_sym_LF] = ACTIONS(6656), + [anon_sym_AMP] = ACTIONS(6658), + }, + [2747] = { + [sym__concat] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1880), + [sym_word] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + }, + [2748] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6660), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2749] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6660), + [anon_sym_SEMI_SEMI] = ACTIONS(6662), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6664), + [anon_sym_LF] = ACTIONS(6662), + [anon_sym_AMP] = ACTIONS(6664), + }, + [2750] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6660), + [anon_sym_SEMI_SEMI] = ACTIONS(6662), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6664), + [anon_sym_LF] = ACTIONS(6662), + [anon_sym_AMP] = ACTIONS(6664), + }, + [2751] = { + [sym__simple_heredoc_body] = ACTIONS(2855), + [sym__heredoc_body_beginning] = ACTIONS(2855), + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_EQ_TILDE] = ACTIONS(2857), + [anon_sym_EQ_EQ] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2857), + [anon_sym_LT_LT_DASH] = ACTIONS(2855), + [anon_sym_LT_LT_LT] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [2752] = { + [sym__simple_heredoc_body] = ACTIONS(2869), + [sym__heredoc_body_beginning] = ACTIONS(2869), + [sym_file_descriptor] = ACTIONS(2869), + [sym__concat] = ACTIONS(2869), + [anon_sym_esac] = ACTIONS(2871), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_EQ_TILDE] = ACTIONS(2871), + [anon_sym_EQ_EQ] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_AMP_GT] = ACTIONS(2871), + [anon_sym_AMP_GT_GT] = ACTIONS(2869), + [anon_sym_LT_AMP] = ACTIONS(2869), + [anon_sym_GT_AMP] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_LT_LT_DASH] = ACTIONS(2869), + [anon_sym_LT_LT_LT] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + }, + [2753] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6666), + [sym_comment] = ACTIONS(53), + }, + [2754] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6668), + [sym_comment] = ACTIONS(53), + }, + [2755] = { + [anon_sym_RBRACE] = ACTIONS(6668), + [sym_comment] = ACTIONS(53), + }, + [2756] = { + [sym_concatenation] = STATE(2925), + [sym_string] = STATE(2924), + [sym_simple_expansion] = STATE(2924), + [sym_string_expansion] = STATE(2924), + [sym_expansion] = STATE(2924), + [sym_command_substitution] = STATE(2924), + [sym_process_substitution] = STATE(2924), + [anon_sym_RBRACE] = ACTIONS(6668), + [sym__special_characters] = ACTIONS(6670), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6672), + }, + [2757] = { + [sym__simple_heredoc_body] = ACTIONS(2905), + [sym__heredoc_body_beginning] = ACTIONS(2905), + [sym_file_descriptor] = ACTIONS(2905), + [sym__concat] = ACTIONS(2905), + [anon_sym_esac] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_EQ_TILDE] = ACTIONS(2907), + [anon_sym_EQ_EQ] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2907), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_LT_LT_DASH] = ACTIONS(2905), + [anon_sym_LT_LT_LT] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + }, + [2758] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6674), + }, + [2759] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6676), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2760] = { + [sym__simple_heredoc_body] = ACTIONS(2913), + [sym__heredoc_body_beginning] = ACTIONS(2913), + [sym_file_descriptor] = ACTIONS(2913), + [sym__concat] = ACTIONS(2913), + [anon_sym_esac] = ACTIONS(2915), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_EQ_TILDE] = ACTIONS(2915), + [anon_sym_EQ_EQ] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_GT] = ACTIONS(2915), + [anon_sym_AMP_GT_GT] = ACTIONS(2913), + [anon_sym_LT_AMP] = ACTIONS(2913), + [anon_sym_GT_AMP] = ACTIONS(2913), + [anon_sym_LT_LT] = ACTIONS(2915), + [anon_sym_LT_LT_DASH] = ACTIONS(2913), + [anon_sym_LT_LT_LT] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + }, + [2761] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6678), + }, + [2762] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6680), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2763] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6682), + }, + [2764] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6668), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2765] = { + [sym_concatenation] = STATE(2932), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2932), + [anon_sym_RBRACE] = ACTIONS(6684), + [anon_sym_EQ] = ACTIONS(6686), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6686), + [anon_sym_COLON_QMARK] = ACTIONS(6686), + [anon_sym_COLON_DASH] = ACTIONS(6686), + [anon_sym_PERCENT] = ACTIONS(6686), + [anon_sym_DASH] = ACTIONS(6686), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2766] = { + [sym__simple_heredoc_body] = ACTIONS(2985), + [sym__heredoc_body_beginning] = ACTIONS(2985), + [sym_file_descriptor] = ACTIONS(2985), + [sym__concat] = ACTIONS(2985), + [anon_sym_esac] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_EQ_TILDE] = ACTIONS(2987), + [anon_sym_EQ_EQ] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_GT] = ACTIONS(2987), + [anon_sym_AMP_GT_GT] = ACTIONS(2985), + [anon_sym_LT_AMP] = ACTIONS(2985), + [anon_sym_GT_AMP] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_LT_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT_LT] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), + }, + [2767] = { + [sym_concatenation] = STATE(2934), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2934), + [anon_sym_RBRACE] = ACTIONS(6690), + [anon_sym_EQ] = ACTIONS(6692), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6692), + [anon_sym_COLON_QMARK] = ACTIONS(6692), + [anon_sym_COLON_DASH] = ACTIONS(6692), + [anon_sym_PERCENT] = ACTIONS(6692), + [anon_sym_DASH] = ACTIONS(6692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2768] = { + [sym__simple_heredoc_body] = ACTIONS(3030), + [sym__heredoc_body_beginning] = ACTIONS(3030), + [sym_file_descriptor] = ACTIONS(3030), + [sym__concat] = ACTIONS(3030), + [anon_sym_esac] = ACTIONS(3032), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_EQ_TILDE] = ACTIONS(3032), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_GT] = ACTIONS(3032), + [anon_sym_AMP_GT_GT] = ACTIONS(3030), + [anon_sym_LT_AMP] = ACTIONS(3030), + [anon_sym_GT_AMP] = ACTIONS(3030), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_LT_LT_DASH] = ACTIONS(3030), + [anon_sym_LT_LT_LT] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + }, + [2769] = { + [sym_concatenation] = STATE(2936), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2936), + [anon_sym_RBRACE] = ACTIONS(6696), + [anon_sym_EQ] = ACTIONS(6698), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6700), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6698), + [anon_sym_COLON_QMARK] = ACTIONS(6698), + [anon_sym_COLON_DASH] = ACTIONS(6698), + [anon_sym_PERCENT] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6698), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2770] = { + [sym__simple_heredoc_body] = ACTIONS(3040), + [sym__heredoc_body_beginning] = ACTIONS(3040), + [sym_file_descriptor] = ACTIONS(3040), + [sym__concat] = ACTIONS(3040), + [anon_sym_esac] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_EQ_TILDE] = ACTIONS(3042), + [anon_sym_EQ_EQ] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_GT] = ACTIONS(3042), + [anon_sym_AMP_GT_GT] = ACTIONS(3040), + [anon_sym_LT_AMP] = ACTIONS(3040), + [anon_sym_GT_AMP] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3042), + [anon_sym_LT_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT_LT] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + }, + [2771] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6702), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2772] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(6702), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2773] = { + [sym__simple_heredoc_body] = ACTIONS(3078), + [sym__heredoc_body_beginning] = ACTIONS(3078), + [sym_file_descriptor] = ACTIONS(3078), + [sym__concat] = ACTIONS(3078), + [anon_sym_esac] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_EQ_TILDE] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_GT] = ACTIONS(3080), + [anon_sym_AMP_GT_GT] = ACTIONS(3078), + [anon_sym_LT_AMP] = ACTIONS(3078), + [anon_sym_GT_AMP] = ACTIONS(3078), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_LT_LT_DASH] = ACTIONS(3078), + [anon_sym_LT_LT_LT] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), + }, + [2774] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6704), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2775] = { + [sym_file_redirect] = STATE(1382), + [sym_file_descriptor] = ACTIONS(6068), + [anon_sym_esac] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2375), + [anon_sym_SEMI_SEMI] = ACTIONS(2373), + [anon_sym_PIPE_AMP] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2373), + [anon_sym_PIPE_PIPE] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(6070), + [anon_sym_GT] = ACTIONS(6070), + [anon_sym_GT_GT] = ACTIONS(6072), + [anon_sym_AMP_GT] = ACTIONS(6070), + [anon_sym_AMP_GT_GT] = ACTIONS(6072), + [anon_sym_LT_AMP] = ACTIONS(6072), + [anon_sym_GT_AMP] = ACTIONS(6072), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_LF] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2375), + }, + [2776] = { + [aux_sym_concatenation_repeat1] = STATE(2779), + [sym__simple_heredoc_body] = ACTIONS(981), + [sym__heredoc_body_beginning] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(6330), + [anon_sym_esac] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), + }, + [2777] = { + [aux_sym_concatenation_repeat1] = STATE(2779), + [sym__simple_heredoc_body] = ACTIONS(985), + [sym__heredoc_body_beginning] = ACTIONS(985), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(6330), + [anon_sym_esac] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [2778] = { + [sym_string] = STATE(2939), + [sym_simple_expansion] = STATE(2939), + [sym_string_expansion] = STATE(2939), + [sym_expansion] = STATE(2939), + [sym_command_substitution] = STATE(2939), + [sym_process_substitution] = STATE(2939), + [sym__special_characters] = ACTIONS(6706), + [anon_sym_DQUOTE] = ACTIONS(5864), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(6706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5872), + [anon_sym_BQUOTE] = ACTIONS(5874), + [anon_sym_LT_LPAREN] = ACTIONS(5876), + [anon_sym_GT_LPAREN] = ACTIONS(5876), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6706), + }, + [2779] = { + [aux_sym_concatenation_repeat1] = STATE(2940), + [sym__simple_heredoc_body] = ACTIONS(695), + [sym__heredoc_body_beginning] = ACTIONS(695), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(6330), + [anon_sym_esac] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [2780] = { + [sym__simple_heredoc_body] = ACTIONS(699), + [sym__heredoc_body_beginning] = ACTIONS(699), + [sym_file_descriptor] = ACTIONS(699), + [sym__concat] = ACTIONS(699), + [anon_sym_esac] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(701), + [anon_sym_AMP_GT_GT] = ACTIONS(699), + [anon_sym_LT_AMP] = ACTIONS(699), + [anon_sym_GT_AMP] = ACTIONS(699), + [anon_sym_LT_LT] = ACTIONS(701), + [anon_sym_LT_LT_DASH] = ACTIONS(699), + [anon_sym_LT_LT_LT] = ACTIONS(699), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), + }, + [2781] = { + [anon_sym_DQUOTE] = ACTIONS(6708), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [2782] = { + [sym_simple_expansion] = STATE(130), + [sym_expansion] = STATE(130), + [sym_command_substitution] = STATE(130), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(6708), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym__string_content] = ACTIONS(235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(239), + [anon_sym_BQUOTE] = ACTIONS(241), + [sym_comment] = ACTIONS(243), + }, + [2783] = { + [sym__simple_heredoc_body] = ACTIONS(731), + [sym__heredoc_body_beginning] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(731), + [sym__concat] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = 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), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), + }, + [2784] = { + [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(735), + [anon_sym_PIPE] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = 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), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(737), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), + }, + [2785] = { + [sym__simple_heredoc_body] = ACTIONS(739), + [sym__heredoc_body_beginning] = ACTIONS(739), + [sym_file_descriptor] = ACTIONS(739), + [sym__concat] = ACTIONS(739), + [anon_sym_esac] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_LT] = ACTIONS(739), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), + }, + [2786] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(6712), + [sym_comment] = ACTIONS(53), + }, + [2787] = { + [sym_subscript] = STATE(2947), + [sym_variable_name] = ACTIONS(6714), + [anon_sym_DOLLAR] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_AT] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6716), + [anon_sym_0] = ACTIONS(6720), + [anon_sym__] = ACTIONS(6720), + }, + [2788] = { + [sym_concatenation] = STATE(2950), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2950), + [anon_sym_RBRACE] = ACTIONS(6722), + [anon_sym_EQ] = ACTIONS(6724), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6728), + [anon_sym_COLON] = ACTIONS(6724), + [anon_sym_COLON_QMARK] = ACTIONS(6724), + [anon_sym_COLON_DASH] = ACTIONS(6724), + [anon_sym_PERCENT] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2789] = { + [sym_concatenation] = STATE(2953), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2953), + [anon_sym_RBRACE] = ACTIONS(6730), + [anon_sym_EQ] = ACTIONS(6732), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6736), + [anon_sym_COLON] = ACTIONS(6732), + [anon_sym_COLON_QMARK] = ACTIONS(6732), + [anon_sym_COLON_DASH] = ACTIONS(6732), + [anon_sym_PERCENT] = ACTIONS(6732), + [anon_sym_DASH] = ACTIONS(6732), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2790] = { + [sym_concatenation] = STATE(2956), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2956), + [anon_sym_RBRACE] = ACTIONS(6738), + [anon_sym_EQ] = ACTIONS(6740), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6744), + [anon_sym_COLON] = ACTIONS(6740), + [anon_sym_COLON_QMARK] = ACTIONS(6740), + [anon_sym_COLON_DASH] = ACTIONS(6740), + [anon_sym_PERCENT] = ACTIONS(6740), + [anon_sym_DASH] = ACTIONS(6740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2791] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6746), + [anon_sym_SEMI_SEMI] = ACTIONS(6748), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6750), + [anon_sym_LF] = ACTIONS(6748), + [anon_sym_AMP] = ACTIONS(6750), + }, + [2792] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6746), + [anon_sym_SEMI_SEMI] = ACTIONS(6748), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6750), + [anon_sym_LF] = ACTIONS(6748), + [anon_sym_AMP] = ACTIONS(6750), + }, + [2793] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2959), + [sym_c_style_for_statement] = STATE(2959), + [sym_while_statement] = STATE(2959), + [sym_if_statement] = STATE(2959), + [sym_case_statement] = STATE(2959), + [sym_function_definition] = STATE(2959), + [sym_subshell] = STATE(2959), + [sym_pipeline] = STATE(2959), + [sym_list] = STATE(2959), + [sym_negated_command] = STATE(2959), + [sym_test_command] = STATE(2959), + [sym_declaration_command] = STATE(2959), + [sym_unset_command] = STATE(2959), + [sym_command] = STATE(2959), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2960), + [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), + }, + [2794] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6752), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(6746), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6754), + [anon_sym_LF] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6754), + }, + [2795] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6752), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(6746), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6754), + [anon_sym_LF] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6754), + }, + [2796] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2962), + [sym_c_style_for_statement] = STATE(2962), + [sym_while_statement] = STATE(2962), + [sym_if_statement] = STATE(2962), + [sym_case_statement] = STATE(2962), + [sym_function_definition] = STATE(2962), + [sym_subshell] = STATE(2962), + [sym_pipeline] = STATE(2962), + [sym_list] = STATE(2962), + [sym_negated_command] = STATE(2962), + [sym_test_command] = STATE(2962), + [sym_declaration_command] = STATE(2962), + [sym_unset_command] = STATE(2962), + [sym_command] = STATE(2962), + [sym_command_name] = STATE(155), + [sym_variable_assignment] = STATE(2963), + [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(267), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(275), + [anon_sym_declare] = ACTIONS(277), + [anon_sym_typeset] = ACTIONS(277), + [anon_sym_export] = ACTIONS(277), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_local] = ACTIONS(277), + [anon_sym_unset] = ACTIONS(279), + [anon_sym_unsetenv] = ACTIONS(279), + [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(281), + }, + [2797] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6756), + [anon_sym_SEMI_SEMI] = ACTIONS(6758), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6760), + [anon_sym_LF] = ACTIONS(6758), + [anon_sym_AMP] = ACTIONS(6760), + }, + [2798] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6756), + [anon_sym_SEMI_SEMI] = ACTIONS(6758), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6760), + [anon_sym_LF] = ACTIONS(6758), + [anon_sym_AMP] = ACTIONS(6760), + }, + [2799] = { + [sym__terminated_statement] = STATE(273), + [sym_for_statement] = STATE(2966), + [sym_c_style_for_statement] = STATE(2966), + [sym_while_statement] = STATE(2966), + [sym_if_statement] = STATE(2966), + [sym_case_statement] = STATE(2966), + [sym_function_definition] = STATE(2966), + [sym_subshell] = STATE(2966), + [sym_pipeline] = STATE(2966), + [sym_list] = STATE(2966), + [sym_negated_command] = STATE(2966), + [sym_test_command] = STATE(2966), + [sym_declaration_command] = STATE(2966), + [sym_unset_command] = STATE(2966), + [sym_command] = STATE(2966), + [sym_command_name] = STATE(65), + [sym_variable_assignment] = STATE(2967), + [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), + }, + [2800] = { + [sym_file_redirect] = STATE(2581), + [sym_heredoc_redirect] = STATE(2581), + [sym_heredoc_body] = STATE(1398), + [sym_herestring_redirect] = STATE(2581), + [aux_sym_while_statement_repeat1] = STATE(2581), + [sym__simple_heredoc_body] = ACTIONS(297), + [sym__heredoc_body_beginning] = ACTIONS(299), + [sym_file_descriptor] = ACTIONS(5326), + [anon_sym_esac] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3135), + [anon_sym_SEMI_SEMI] = ACTIONS(3133), + [anon_sym_PIPE_AMP] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_PIPE_PIPE] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(5330), + [anon_sym_GT] = ACTIONS(5330), + [anon_sym_GT_GT] = ACTIONS(5332), + [anon_sym_AMP_GT] = ACTIONS(5330), + [anon_sym_AMP_GT_GT] = ACTIONS(5332), + [anon_sym_LT_AMP] = ACTIONS(5332), + [anon_sym_GT_AMP] = ACTIONS(5332), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(315), + [anon_sym_LT_LT_LT] = ACTIONS(5334), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3135), + }, + [2801] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_esac] = ACTIONS(6762), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(6764), + [anon_sym_DQUOTE] = ACTIONS(6766), + [anon_sym_DOLLAR] = ACTIONS(6764), + [sym_raw_string] = ACTIONS(6766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6766), + [anon_sym_BQUOTE] = ACTIONS(6766), + [anon_sym_LT_LPAREN] = ACTIONS(6766), + [anon_sym_GT_LPAREN] = ACTIONS(6766), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6764), + }, + [2802] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_esac] = ACTIONS(6768), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(6770), + [anon_sym_DQUOTE] = ACTIONS(6772), + [anon_sym_DOLLAR] = ACTIONS(6770), + [sym_raw_string] = ACTIONS(6772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6772), + [anon_sym_BQUOTE] = ACTIONS(6772), + [anon_sym_LT_LPAREN] = ACTIONS(6772), + [anon_sym_GT_LPAREN] = ACTIONS(6772), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6770), + }, + [2803] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(5838), + [anon_sym_DQUOTE] = ACTIONS(5840), + [anon_sym_DOLLAR] = ACTIONS(5838), + [sym_raw_string] = ACTIONS(5840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5840), + [anon_sym_BQUOTE] = ACTIONS(5840), + [anon_sym_LT_LPAREN] = ACTIONS(5840), + [anon_sym_GT_LPAREN] = ACTIONS(5840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5838), + }, + [2804] = { + [sym__special_characters] = ACTIONS(5840), + [anon_sym_DQUOTE] = ACTIONS(5840), + [anon_sym_DOLLAR] = ACTIONS(5838), + [sym_raw_string] = ACTIONS(5840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5840), + [anon_sym_BQUOTE] = ACTIONS(5840), + [anon_sym_LT_LPAREN] = ACTIONS(5840), + [anon_sym_GT_LPAREN] = ACTIONS(5840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5840), + }, + [2805] = { + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(6774), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(295), + }, + [2806] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(6774), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(295), + }, + [2807] = { + [sym__terminated_statement] = STATE(2807), [sym_for_statement] = STATE(26), [sym_c_style_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -68248,64 +75704,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2553), + [aux_sym_program_repeat1] = STATE(2807), [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_file_descriptor] = ACTIONS(891), + [sym_variable_name] = ACTIONS(894), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(902), + [anon_sym_if] = ACTIONS(905), + [anon_sym_case] = ACTIONS(908), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_function] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(923), + [anon_sym_declare] = ACTIONS(926), + [anon_sym_typeset] = ACTIONS(926), + [anon_sym_export] = ACTIONS(926), + [anon_sym_readonly] = ACTIONS(926), + [anon_sym_local] = ACTIONS(926), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(932), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_AMP_GT] = ACTIONS(932), + [anon_sym_AMP_GT_GT] = ACTIONS(935), + [anon_sym_LT_AMP] = ACTIONS(935), + [anon_sym_GT_AMP] = ACTIONS(935), + [sym__special_characters] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(944), + [sym_raw_string] = ACTIONS(947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LT_LPAREN] = ACTIONS(959), + [anon_sym_GT_LPAREN] = ACTIONS(959), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(936), + [sym_word] = ACTIONS(962), }, - [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), + [2808] = { + [sym__terminated_statement] = STATE(2807), + [sym_for_statement] = STATE(2970), + [sym_c_style_for_statement] = STATE(2970), + [sym_while_statement] = STATE(2970), + [sym_if_statement] = STATE(2970), + [sym_case_statement] = STATE(2970), + [sym_function_definition] = STATE(2970), + [sym_subshell] = STATE(2970), + [sym_pipeline] = STATE(2970), + [sym_list] = STATE(2970), + [sym_negated_command] = STATE(2970), + [sym_test_command] = STATE(2970), + [sym_declaration_command] = STATE(2970), + [sym_unset_command] = STATE(2970), + [sym_command] = STATE(2970), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2642), + [sym_variable_assignment] = STATE(2971), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -68315,7 +75771,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2553), + [aux_sym_program_repeat1] = STATE(2807), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -68323,7 +75779,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6125), + [anon_sym_SEMI_SEMI] = ACTIONS(6776), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -68355,117 +75811,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [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), + [2809] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(5890), + [anon_sym_DQUOTE] = ACTIONS(5892), + [anon_sym_DOLLAR] = ACTIONS(5890), + [sym_raw_string] = ACTIONS(5892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5892), + [anon_sym_BQUOTE] = ACTIONS(5892), + [anon_sym_LT_LPAREN] = ACTIONS(5892), + [anon_sym_GT_LPAREN] = ACTIONS(5892), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5526), + [sym_word] = ACTIONS(5890), }, - [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), + [2810] = { + [sym__special_characters] = ACTIONS(5892), + [anon_sym_DQUOTE] = ACTIONS(5892), + [anon_sym_DOLLAR] = ACTIONS(5890), + [sym_raw_string] = ACTIONS(5892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5892), + [anon_sym_BQUOTE] = ACTIONS(5892), + [anon_sym_LT_LPAREN] = ACTIONS(5892), + [anon_sym_GT_LPAREN] = ACTIONS(5892), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5528), + [sym_word] = ACTIONS(5892), }, - [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(285), + [2811] = { + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(6778), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(295), [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(295), }, - [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), + [2812] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(6778), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(295), [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(295), }, - [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), + [2813] = { + [sym__terminated_statement] = STATE(2807), + [sym_for_statement] = STATE(2974), + [sym_c_style_for_statement] = STATE(2974), + [sym_while_statement] = STATE(2974), + [sym_if_statement] = STATE(2974), + [sym_case_statement] = STATE(2974), + [sym_function_definition] = STATE(2974), + [sym_subshell] = STATE(2974), + [sym_pipeline] = STATE(2974), + [sym_list] = STATE(2974), + [sym_negated_command] = STATE(2974), + [sym_test_command] = STATE(2974), + [sym_declaration_command] = STATE(2974), + [sym_unset_command] = STATE(2974), + [sym_command] = STATE(2974), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2646), + [sym_variable_assignment] = STATE(2975), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -68475,7 +75931,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(2553), + [aux_sym_program_repeat1] = STATE(2807), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -68483,7 +75939,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(13), [anon_sym_if] = ACTIONS(15), [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6129), + [anon_sym_SEMI_SEMI] = ACTIONS(6780), [anon_sym_function] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(23), @@ -68515,3805 +75971,9081 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(55), }, - [2560] = { - [sym_file_descriptor] = ACTIONS(4720), - [sym__concat] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4722), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_RPAREN] = ACTIONS(4722), - [anon_sym_SEMI_SEMI] = ACTIONS(4722), - [anon_sym_PIPE_AMP] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4722), - [anon_sym_GT] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_AMP_GT] = ACTIONS(4722), - [anon_sym_AMP_GT_GT] = ACTIONS(4722), - [anon_sym_LT_AMP] = ACTIONS(4722), - [anon_sym_GT_AMP] = ACTIONS(4722), - [anon_sym_LT_LT] = ACTIONS(4722), - [anon_sym_LT_LT_DASH] = ACTIONS(4722), - [anon_sym_LT_LT_LT] = ACTIONS(4722), - [anon_sym_BQUOTE] = ACTIONS(4722), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LF] = ACTIONS(4720), - [anon_sym_AMP] = ACTIONS(4722), + [2814] = { + [sym_file_descriptor] = ACTIONS(4885), + [sym__concat] = ACTIONS(4885), + [anon_sym_esac] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4887), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [anon_sym_LT_LT] = ACTIONS(4887), + [anon_sym_LT_LT_DASH] = ACTIONS(4885), + [anon_sym_LT_LT_LT] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), }, - [2561] = { - [sym_file_descriptor] = ACTIONS(4724), - [sym__concat] = ACTIONS(4724), - [anon_sym_esac] = ACTIONS(4726), - [anon_sym_PIPE] = ACTIONS(4726), - [anon_sym_RPAREN] = ACTIONS(4726), - [anon_sym_SEMI_SEMI] = ACTIONS(4726), - [anon_sym_PIPE_AMP] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4726), - [anon_sym_GT] = ACTIONS(4726), - [anon_sym_GT_GT] = ACTIONS(4726), - [anon_sym_AMP_GT] = ACTIONS(4726), - [anon_sym_AMP_GT_GT] = ACTIONS(4726), - [anon_sym_LT_AMP] = ACTIONS(4726), - [anon_sym_GT_AMP] = ACTIONS(4726), - [anon_sym_LT_LT] = ACTIONS(4726), - [anon_sym_LT_LT_DASH] = ACTIONS(4726), - [anon_sym_LT_LT_LT] = ACTIONS(4726), - [anon_sym_BQUOTE] = ACTIONS(4726), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_LF] = ACTIONS(4724), - [anon_sym_AMP] = ACTIONS(4726), + [2815] = { + [sym_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_LT_LT_DASH] = ACTIONS(4889), + [anon_sym_LT_LT_LT] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), }, - [2562] = { - [sym_file_descriptor] = ACTIONS(4728), - [sym__concat] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_SEMI_SEMI] = ACTIONS(4730), - [anon_sym_PIPE_AMP] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4730), - [anon_sym_GT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4730), - [anon_sym_AMP_GT] = ACTIONS(4730), - [anon_sym_AMP_GT_GT] = ACTIONS(4730), - [anon_sym_LT_AMP] = ACTIONS(4730), - [anon_sym_GT_AMP] = ACTIONS(4730), - [anon_sym_LT_LT] = ACTIONS(4730), - [anon_sym_LT_LT_DASH] = ACTIONS(4730), - [anon_sym_LT_LT_LT] = ACTIONS(4730), - [anon_sym_BQUOTE] = ACTIONS(4730), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4728), - [anon_sym_AMP] = ACTIONS(4730), + [2816] = { + [sym_file_descriptor] = ACTIONS(4893), + [sym__concat] = ACTIONS(4893), + [anon_sym_esac] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4893), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_AMP_GT] = ACTIONS(4895), + [anon_sym_AMP_GT_GT] = ACTIONS(4893), + [anon_sym_LT_AMP] = ACTIONS(4893), + [anon_sym_GT_AMP] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4895), + [anon_sym_LT_LT_DASH] = ACTIONS(4893), + [anon_sym_LT_LT_LT] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), }, - [2563] = { - [sym_concatenation] = STATE(885), + [2817] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6782), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2564] = { - [sym_file_descriptor] = ACTIONS(4734), - [sym__concat] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [anon_sym_PIPE] = ACTIONS(4736), - [anon_sym_RPAREN] = ACTIONS(4736), - [anon_sym_SEMI_SEMI] = ACTIONS(4736), - [anon_sym_PIPE_AMP] = ACTIONS(4736), - [anon_sym_AMP_AMP] = ACTIONS(4736), - [anon_sym_PIPE_PIPE] = ACTIONS(4736), - [anon_sym_LT] = ACTIONS(4736), - [anon_sym_GT] = ACTIONS(4736), - [anon_sym_GT_GT] = ACTIONS(4736), - [anon_sym_AMP_GT] = ACTIONS(4736), - [anon_sym_AMP_GT_GT] = ACTIONS(4736), - [anon_sym_LT_AMP] = ACTIONS(4736), - [anon_sym_GT_AMP] = ACTIONS(4736), - [anon_sym_LT_LT] = ACTIONS(4736), - [anon_sym_LT_LT_DASH] = ACTIONS(4736), - [anon_sym_LT_LT_LT] = ACTIONS(4736), - [anon_sym_BQUOTE] = ACTIONS(4736), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4734), - [anon_sym_AMP] = ACTIONS(4736), + [2818] = { + [sym_file_descriptor] = ACTIONS(4899), + [sym__concat] = ACTIONS(4899), + [anon_sym_esac] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_GT_GT] = ACTIONS(4899), + [anon_sym_AMP_GT] = ACTIONS(4901), + [anon_sym_AMP_GT_GT] = ACTIONS(4899), + [anon_sym_LT_AMP] = ACTIONS(4899), + [anon_sym_GT_AMP] = ACTIONS(4899), + [anon_sym_LT_LT] = ACTIONS(4901), + [anon_sym_LT_LT_DASH] = ACTIONS(4899), + [anon_sym_LT_LT_LT] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), }, - [2565] = { - [sym_concatenation] = STATE(885), + [2819] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6133), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6784), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2566] = { - [sym_file_descriptor] = ACTIONS(4740), - [sym__concat] = ACTIONS(4740), - [anon_sym_esac] = ACTIONS(4742), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_SEMI_SEMI] = ACTIONS(4742), - [anon_sym_PIPE_AMP] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4742), - [anon_sym_GT] = ACTIONS(4742), - [anon_sym_GT_GT] = ACTIONS(4742), - [anon_sym_AMP_GT] = ACTIONS(4742), - [anon_sym_AMP_GT_GT] = ACTIONS(4742), - [anon_sym_LT_AMP] = ACTIONS(4742), - [anon_sym_GT_AMP] = ACTIONS(4742), - [anon_sym_LT_LT] = ACTIONS(4742), - [anon_sym_LT_LT_DASH] = ACTIONS(4742), - [anon_sym_LT_LT_LT] = ACTIONS(4742), - [anon_sym_BQUOTE] = ACTIONS(4742), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_LF] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), + [2820] = { + [sym_file_descriptor] = ACTIONS(4905), + [sym__concat] = ACTIONS(4905), + [anon_sym_esac] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4905), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4907), + [anon_sym_GT] = ACTIONS(4907), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_AMP_GT] = ACTIONS(4907), + [anon_sym_AMP_GT_GT] = ACTIONS(4905), + [anon_sym_LT_AMP] = ACTIONS(4905), + [anon_sym_GT_AMP] = ACTIONS(4905), + [anon_sym_LT_LT] = ACTIONS(4907), + [anon_sym_LT_LT_DASH] = ACTIONS(4905), + [anon_sym_LT_LT_LT] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), }, - [2567] = { - [sym_concatenation] = STATE(885), + [2821] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6786), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2568] = { - [sym_file_descriptor] = ACTIONS(4782), - [sym__concat] = ACTIONS(4782), - [anon_sym_esac] = ACTIONS(4784), - [anon_sym_PIPE] = ACTIONS(4784), - [anon_sym_RPAREN] = ACTIONS(4784), - [anon_sym_SEMI_SEMI] = ACTIONS(4784), - [anon_sym_PIPE_AMP] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4784), - [anon_sym_PIPE_PIPE] = ACTIONS(4784), - [anon_sym_LT] = ACTIONS(4784), - [anon_sym_GT] = ACTIONS(4784), - [anon_sym_GT_GT] = ACTIONS(4784), - [anon_sym_AMP_GT] = ACTIONS(4784), - [anon_sym_AMP_GT_GT] = ACTIONS(4784), - [anon_sym_LT_AMP] = ACTIONS(4784), - [anon_sym_GT_AMP] = ACTIONS(4784), - [anon_sym_LT_LT] = ACTIONS(4784), - [anon_sym_LT_LT_DASH] = ACTIONS(4784), - [anon_sym_LT_LT_LT] = ACTIONS(4784), - [anon_sym_BQUOTE] = ACTIONS(4784), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4784), - [anon_sym_LF] = ACTIONS(4782), - [anon_sym_AMP] = ACTIONS(4784), + [2822] = { + [sym_file_descriptor] = ACTIONS(4947), + [sym__concat] = ACTIONS(4947), + [anon_sym_esac] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4947), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_AMP_GT] = ACTIONS(4949), + [anon_sym_AMP_GT_GT] = ACTIONS(4947), + [anon_sym_LT_AMP] = ACTIONS(4947), + [anon_sym_GT_AMP] = ACTIONS(4947), + [anon_sym_LT_LT] = ACTIONS(4949), + [anon_sym_LT_LT_DASH] = ACTIONS(4947), + [anon_sym_LT_LT_LT] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), }, - [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(4792), - [anon_sym_LF] = ACTIONS(4790), - [anon_sym_AMP] = ACTIONS(4792), + [2823] = { + [sym_file_descriptor] = ACTIONS(4955), + [sym__concat] = ACTIONS(4955), + [anon_sym_esac] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4955), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_AMP_GT] = ACTIONS(4957), + [anon_sym_AMP_GT_GT] = ACTIONS(4955), + [anon_sym_LT_AMP] = ACTIONS(4955), + [anon_sym_GT_AMP] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_LT_LT_DASH] = ACTIONS(4955), + [anon_sym_LT_LT_LT] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), }, - [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(4796), - [anon_sym_LF] = ACTIONS(4794), - [anon_sym_AMP] = ACTIONS(4796), + [2824] = { + [sym_file_descriptor] = ACTIONS(4959), + [sym__concat] = ACTIONS(4959), + [anon_sym_esac] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4959), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4961), + [anon_sym_GT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_AMP_GT] = ACTIONS(4961), + [anon_sym_AMP_GT_GT] = ACTIONS(4959), + [anon_sym_LT_AMP] = ACTIONS(4959), + [anon_sym_GT_AMP] = ACTIONS(4959), + [anon_sym_LT_LT] = ACTIONS(4961), + [anon_sym_LT_LT_DASH] = ACTIONS(4959), + [anon_sym_LT_LT_LT] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), }, - [2571] = { - [sym__concat] = ACTIONS(5282), - [anon_sym_RBRACE] = ACTIONS(5282), + [2825] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_RBRACE] = ACTIONS(5524), [sym_comment] = ACTIONS(53), }, - [2572] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_RBRACE] = ACTIONS(5286), + [2826] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_RBRACE] = ACTIONS(5528), [sym_comment] = ACTIONS(53), }, - [2573] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_RBRACE] = ACTIONS(5290), + [2827] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_RBRACE] = ACTIONS(5532), [sym_comment] = ACTIONS(53), }, - [2574] = { - [sym__concat] = ACTIONS(5282), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5282), - [anon_sym_AMP_AMP] = ACTIONS(5282), - [anon_sym_PIPE_PIPE] = ACTIONS(5282), - [anon_sym_EQ_TILDE] = ACTIONS(5282), - [anon_sym_EQ_EQ] = ACTIONS(5282), - [anon_sym_EQ] = ACTIONS(5284), - [anon_sym_LT] = ACTIONS(5282), - [anon_sym_GT] = ACTIONS(5282), - [anon_sym_BANG_EQ] = ACTIONS(5282), + [2828] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_EQ_TILDE] = ACTIONS(5524), + [anon_sym_EQ_EQ] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5524), + [anon_sym_GT] = ACTIONS(5524), + [anon_sym_BANG_EQ] = ACTIONS(5524), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5282), + [sym_test_operator] = ACTIONS(5524), }, - [2575] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5286), - [anon_sym_AMP_AMP] = ACTIONS(5286), - [anon_sym_PIPE_PIPE] = ACTIONS(5286), - [anon_sym_EQ_TILDE] = ACTIONS(5286), - [anon_sym_EQ_EQ] = ACTIONS(5286), - [anon_sym_EQ] = ACTIONS(5288), - [anon_sym_LT] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5286), - [anon_sym_BANG_EQ] = ACTIONS(5286), + [2829] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [anon_sym_EQ_TILDE] = ACTIONS(5528), + [anon_sym_EQ_EQ] = ACTIONS(5528), + [anon_sym_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5528), + [anon_sym_GT] = ACTIONS(5528), + [anon_sym_BANG_EQ] = ACTIONS(5528), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5286), + [sym_test_operator] = ACTIONS(5528), }, - [2576] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5290), - [anon_sym_AMP_AMP] = ACTIONS(5290), - [anon_sym_PIPE_PIPE] = ACTIONS(5290), - [anon_sym_EQ_TILDE] = ACTIONS(5290), - [anon_sym_EQ_EQ] = ACTIONS(5290), - [anon_sym_EQ] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5290), - [anon_sym_GT] = ACTIONS(5290), - [anon_sym_BANG_EQ] = ACTIONS(5290), + [2830] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [anon_sym_EQ_TILDE] = ACTIONS(5532), + [anon_sym_EQ_EQ] = ACTIONS(5532), + [anon_sym_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5532), + [anon_sym_GT] = ACTIONS(5532), + [anon_sym_BANG_EQ] = ACTIONS(5532), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5290), + [sym_test_operator] = ACTIONS(5532), }, - [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), + [2831] = { + [sym_file_descriptor] = ACTIONS(3201), + [sym_variable_name] = ACTIONS(3201), + [anon_sym_esac] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_SEMI_SEMI] = ACTIONS(3201), + [anon_sym_PIPE_AMP] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_GT_GT] = ACTIONS(3201), + [anon_sym_AMP_GT] = ACTIONS(3203), + [anon_sym_AMP_GT_GT] = ACTIONS(3201), + [anon_sym_LT_AMP] = ACTIONS(3201), + [anon_sym_GT_AMP] = ACTIONS(3201), + [sym__special_characters] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [anon_sym_DOLLAR] = ACTIONS(3203), + [sym_raw_string] = ACTIONS(3201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3201), + [anon_sym_BQUOTE] = ACTIONS(3201), + [anon_sym_LT_LPAREN] = ACTIONS(3201), + [anon_sym_GT_LPAREN] = ACTIONS(3201), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6139), + [sym_word] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_LF] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3203), }, - [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), + [2832] = { + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1664), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_esac] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6143), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, - [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), + [2833] = { + [aux_sym_concatenation_repeat1] = STATE(2833), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(6788), + [sym_variable_name] = ACTIONS(1664), + [anon_sym_esac] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [sym__special_characters] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1666), + [sym_raw_string] = ACTIONS(1664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1664), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LT_LPAREN] = ACTIONS(1664), + [anon_sym_GT_LPAREN] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), }, - [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), + [2834] = { + [sym_file_descriptor] = ACTIONS(1671), + [sym__concat] = ACTIONS(1671), + [sym_variable_name] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1673), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [sym__special_characters] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1673), + [sym_raw_string] = ACTIONS(1671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1671), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [anon_sym_LT_LPAREN] = ACTIONS(1671), + [anon_sym_GT_LPAREN] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), }, - [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), + [2835] = { + [anon_sym_DQUOTE] = ACTIONS(6791), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), }, - [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), + [2836] = { + [sym_concatenation] = STATE(2983), + [sym_string] = STATE(2982), + [sym_simple_expansion] = STATE(2982), + [sym_string_expansion] = STATE(2982), + [sym_expansion] = STATE(2982), + [sym_command_substitution] = STATE(2982), + [sym_process_substitution] = STATE(2982), + [anon_sym_RBRACE] = ACTIONS(6793), + [sym__special_characters] = ACTIONS(6795), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6797), }, - [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), + [2837] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(6799), + [sym_comment] = ACTIONS(53), + }, + [2838] = { + [sym_concatenation] = STATE(2987), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2987), + [anon_sym_RBRACE] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6803), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6805), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_QMARK] = ACTIONS(6803), + [anon_sym_COLON_DASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6803), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2839] = { + [sym_concatenation] = STATE(2990), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2990), + [anon_sym_RBRACE] = ACTIONS(6809), + [anon_sym_EQ] = ACTIONS(6811), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6813), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_QMARK] = ACTIONS(6811), + [anon_sym_COLON_DASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6811), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2840] = { + [sym_concatenation] = STATE(2992), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2992), + [anon_sym_RBRACE] = ACTIONS(6793), + [anon_sym_EQ] = ACTIONS(6817), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_COLON] = ACTIONS(6817), + [anon_sym_COLON_QMARK] = ACTIONS(6817), + [anon_sym_COLON_DASH] = ACTIONS(6817), + [anon_sym_PERCENT] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2841] = { + [sym_file_descriptor] = ACTIONS(1788), + [sym__concat] = ACTIONS(1788), + [sym_variable_name] = ACTIONS(1788), + [anon_sym_esac] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_GT_GT] = ACTIONS(1788), + [anon_sym_AMP_GT] = ACTIONS(1790), + [anon_sym_AMP_GT_GT] = ACTIONS(1788), + [anon_sym_LT_AMP] = ACTIONS(1788), + [anon_sym_GT_AMP] = ACTIONS(1788), + [sym__special_characters] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1788), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1788), + [anon_sym_LT_LPAREN] = ACTIONS(1788), + [anon_sym_GT_LPAREN] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), + }, + [2842] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6823), + }, + [2843] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6825), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2844] = { + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [sym_variable_name] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [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(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1834), + [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(1834), + [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(53), + [sym_word] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [2845] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6827), + }, + [2846] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2847] = { + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [sym_variable_name] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1840), + [anon_sym_LT_AMP] = ACTIONS(1840), + [anon_sym_GT_AMP] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [2848] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6831), + }, + [2849] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6793), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2850] = { + [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_SEMI_SEMI] = 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(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [2851] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2852] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6833), + [anon_sym_SEMI_SEMI] = ACTIONS(6835), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6837), + [anon_sym_LF] = ACTIONS(6835), + [anon_sym_AMP] = ACTIONS(6837), + }, + [2853] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6833), + [anon_sym_SEMI_SEMI] = ACTIONS(6835), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6837), + [anon_sym_LF] = ACTIONS(6835), + [anon_sym_AMP] = ACTIONS(6837), + }, + [2854] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(6833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2855] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6839), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(6833), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6841), + [anon_sym_LF] = ACTIONS(6839), + [anon_sym_AMP] = ACTIONS(6841), + }, + [2856] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(6839), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(6833), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6841), + [anon_sym_LF] = ACTIONS(6839), + [anon_sym_AMP] = ACTIONS(6841), + }, + [2857] = { + [sym_file_descriptor] = ACTIONS(1878), + [sym__concat] = ACTIONS(1878), + [sym_variable_name] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1880), + [sym_raw_string] = ACTIONS(1878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), + [anon_sym_BQUOTE] = ACTIONS(1878), + [anon_sym_LT_LPAREN] = ACTIONS(1878), + [anon_sym_GT_LPAREN] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + }, + [2858] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2859] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_SEMI_SEMI] = ACTIONS(6845), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6847), + [anon_sym_LF] = ACTIONS(6845), + [anon_sym_AMP] = ACTIONS(6847), + }, + [2860] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_SEMI_SEMI] = ACTIONS(6845), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(6847), + [anon_sym_LF] = ACTIONS(6845), + [anon_sym_AMP] = ACTIONS(6847), + }, + [2861] = { + [sym_file_redirect] = STATE(1577), + [sym_file_descriptor] = ACTIONS(6068), + [anon_sym_esac] = ACTIONS(3567), + [anon_sym_PIPE] = ACTIONS(3565), + [anon_sym_SEMI_SEMI] = ACTIONS(3567), + [anon_sym_PIPE_AMP] = ACTIONS(3567), + [anon_sym_AMP_AMP] = ACTIONS(3567), + [anon_sym_PIPE_PIPE] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(6070), + [anon_sym_GT] = ACTIONS(6070), + [anon_sym_GT_GT] = ACTIONS(6072), + [anon_sym_AMP_GT] = ACTIONS(6070), + [anon_sym_AMP_GT_GT] = ACTIONS(6072), + [anon_sym_LT_AMP] = ACTIONS(6072), + [anon_sym_GT_AMP] = ACTIONS(6072), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3565), + [anon_sym_LF] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + }, + [2862] = { + [sym_concatenation] = STATE(1580), + [sym_string] = STATE(3004), + [sym_simple_expansion] = STATE(3004), + [sym_string_expansion] = STATE(3004), + [sym_expansion] = STATE(3004), + [sym_command_substitution] = STATE(3004), + [sym_process_substitution] = STATE(3004), + [sym__special_characters] = ACTIONS(6849), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [sym_raw_string] = ACTIONS(6851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), + [anon_sym_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6851), + }, + [2863] = { + [aux_sym_concatenation_repeat1] = STATE(3005), + [sym__concat] = ACTIONS(1053), + [anon_sym_esac] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [2864] = { + [aux_sym_concatenation_repeat1] = STATE(3005), + [sym__concat] = ACTIONS(1053), + [anon_sym_esac] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [2865] = { + [sym_concatenation] = STATE(1615), + [sym_string] = STATE(3007), + [sym_simple_expansion] = STATE(3007), + [sym_string_expansion] = STATE(3007), + [sym_expansion] = STATE(3007), + [sym_command_substitution] = STATE(3007), + [sym_process_substitution] = STATE(3007), + [sym__special_characters] = ACTIONS(6853), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(6855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2539), + [anon_sym_BQUOTE] = ACTIONS(2541), + [anon_sym_LT_LPAREN] = ACTIONS(2543), + [anon_sym_GT_LPAREN] = ACTIONS(2543), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6855), + }, + [2866] = { + [aux_sym_concatenation_repeat1] = STATE(3008), + [sym_file_descriptor] = ACTIONS(661), + [sym__concat] = ACTIONS(3647), + [anon_sym_esac] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(665), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_PIPE_AMP] = ACTIONS(661), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_AMP_GT] = ACTIONS(665), + [anon_sym_AMP_GT_GT] = ACTIONS(661), + [anon_sym_LT_AMP] = ACTIONS(661), + [anon_sym_GT_AMP] = ACTIONS(661), + [anon_sym_LT_LT] = ACTIONS(665), + [anon_sym_LT_LT_DASH] = ACTIONS(661), + [anon_sym_LT_LT_LT] = ACTIONS(661), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_LF] = ACTIONS(661), + [anon_sym_AMP] = ACTIONS(665), + }, + [2867] = { + [aux_sym_concatenation_repeat1] = STATE(3008), + [sym_file_descriptor] = ACTIONS(679), + [sym__concat] = ACTIONS(3647), + [anon_sym_esac] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(679), + [anon_sym_PIPE_AMP] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(679), + [anon_sym_PIPE_PIPE] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(681), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_LT_LT_DASH] = ACTIONS(679), + [anon_sym_LT_LT_LT] = ACTIONS(679), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(681), + [anon_sym_LF] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(681), + }, + [2868] = { + [aux_sym_concatenation_repeat1] = STATE(3008), + [sym_file_descriptor] = ACTIONS(1936), + [sym__concat] = ACTIONS(3647), + [anon_sym_esac] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), + [anon_sym_PIPE_AMP] = ACTIONS(1936), + [anon_sym_AMP_AMP] = ACTIONS(1936), + [anon_sym_PIPE_PIPE] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_GT_GT] = ACTIONS(1936), + [anon_sym_AMP_GT] = ACTIONS(1938), + [anon_sym_AMP_GT_GT] = ACTIONS(1936), + [anon_sym_LT_AMP] = ACTIONS(1936), + [anon_sym_GT_AMP] = ACTIONS(1936), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_LT_LT_DASH] = ACTIONS(1936), + [anon_sym_LT_LT_LT] = ACTIONS(1936), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1938), [anon_sym_LF] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1938), }, - [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), + [2869] = { + [aux_sym_concatenation_repeat1] = STATE(3008), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(3647), + [anon_sym_esac] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), }, - [2589] = { - [sym_concatenation] = STATE(954), + [2870] = { + [sym_file_redirect] = STATE(2870), + [sym_heredoc_redirect] = STATE(2870), + [sym_herestring_redirect] = STATE(2870), + [aux_sym_while_statement_repeat1] = STATE(2870), + [sym_file_descriptor] = ACTIONS(6857), + [anon_sym_esac] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1953), + [anon_sym_SEMI_SEMI] = ACTIONS(1948), + [anon_sym_PIPE_AMP] = ACTIONS(1948), + [anon_sym_AMP_AMP] = ACTIONS(1948), + [anon_sym_PIPE_PIPE] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(6860), + [anon_sym_GT] = ACTIONS(6860), + [anon_sym_GT_GT] = ACTIONS(6863), + [anon_sym_AMP_GT] = ACTIONS(6860), + [anon_sym_AMP_GT_GT] = ACTIONS(6863), + [anon_sym_LT_AMP] = ACTIONS(6863), + [anon_sym_GT_AMP] = ACTIONS(6863), + [anon_sym_LT_LT] = ACTIONS(3680), + [anon_sym_LT_LT_DASH] = ACTIONS(3683), + [anon_sym_LT_LT_LT] = ACTIONS(6866), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_LF] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1953), + }, + [2871] = { + [sym_variable_name] = ACTIONS(2014), + [anon_sym_esac] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_SEMI_SEMI] = ACTIONS(2014), + [anon_sym_PIPE_AMP] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(2014), + [anon_sym_PIPE_PIPE] = ACTIONS(2014), + [sym__special_characters] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2016), + [sym_raw_string] = ACTIONS(2014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2014), + [anon_sym_BQUOTE] = ACTIONS(2014), + [anon_sym_LT_LPAREN] = ACTIONS(2014), + [anon_sym_GT_LPAREN] = ACTIONS(2014), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2016), + [sym_word] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_LF] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2016), + }, + [2872] = { + [sym_concatenation] = STATE(960), [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), + [aux_sym_for_statement_repeat1] = STATE(960), + [anon_sym_RPAREN] = ACTIONS(6869), + [sym__special_characters] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1009), + [sym_raw_string] = ACTIONS(1011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LT_LPAREN] = ACTIONS(1019), + [anon_sym_GT_LPAREN] = ACTIONS(1019), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(985), + [sym_word] = ACTIONS(1011), }, - [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), + [2873] = { + [sym__concat] = ACTIONS(2855), + [sym_variable_name] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2857), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), }, - [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), + [2874] = { + [sym__concat] = ACTIONS(2869), + [sym_variable_name] = ACTIONS(2869), + [anon_sym_esac] = ACTIONS(2871), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2871), + [sym_word] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), }, - [2592] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(6156), + [2875] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6871), [sym_comment] = ACTIONS(53), }, - [2593] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(6158), + [2876] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6873), [sym_comment] = ACTIONS(53), }, - [2594] = { - [anon_sym_RBRACE] = ACTIONS(6158), + [2877] = { + [anon_sym_RBRACE] = ACTIONS(6873), [sym_comment] = ACTIONS(53), }, - [2595] = { - [sym_concatenation] = STATE(2661), - [sym_string] = STATE(2660), - [sym_simple_expansion] = STATE(2660), - [sym_string_expansion] = STATE(2660), - [sym_expansion] = STATE(2660), - [sym_command_substitution] = STATE(2660), - [sym_process_substitution] = STATE(2660), - [anon_sym_RBRACE] = ACTIONS(6158), - [sym__special_characters] = ACTIONS(6160), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(6162), - [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), + [2878] = { + [sym_concatenation] = STATE(3014), + [sym_string] = STATE(3013), + [sym_simple_expansion] = STATE(3013), + [sym_string_expansion] = STATE(3013), + [sym_expansion] = STATE(3013), + [sym_command_substitution] = STATE(3013), + [sym_process_substitution] = STATE(3013), + [anon_sym_RBRACE] = ACTIONS(6873), + [sym__special_characters] = ACTIONS(6875), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6162), + [sym_word] = ACTIONS(6877), }, - [2596] = { - [sym__concat] = ACTIONS(2868), - [sym_variable_name] = ACTIONS(2868), - [anon_sym_esac] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [sym__special_characters] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym_raw_string] = ACTIONS(2870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [anon_sym_LT_LPAREN] = ACTIONS(2870), - [anon_sym_GT_LPAREN] = ACTIONS(2870), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2870), - [sym_word] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), + [2879] = { + [sym__concat] = ACTIONS(2905), + [sym_variable_name] = ACTIONS(2905), + [anon_sym_esac] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2907), + [sym_word] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), }, - [2597] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6164), + [2880] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6879), }, - [2598] = { - [sym_concatenation] = STATE(885), + [2881] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6166), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6881), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2599] = { - [sym__concat] = ACTIONS(2876), - [sym_variable_name] = ACTIONS(2876), - [anon_sym_esac] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [anon_sym_PIPE_AMP] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [sym__special_characters] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [anon_sym_LT_LPAREN] = ACTIONS(2878), - [anon_sym_GT_LPAREN] = ACTIONS(2878), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), - [sym_word] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), + [2882] = { + [sym__concat] = ACTIONS(2913), + [sym_variable_name] = ACTIONS(2913), + [anon_sym_esac] = ACTIONS(2915), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2915), + [sym_word] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), }, - [2600] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6168), + [2883] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6883), }, - [2601] = { - [sym_concatenation] = STATE(885), + [2884] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6170), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6885), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2602] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6172), + [2885] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6887), }, - [2603] = { - [sym_concatenation] = STATE(885), + [2886] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6158), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6873), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2604] = { - [sym_concatenation] = STATE(2668), + [2887] = { + [sym_concatenation] = STATE(3021), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2668), - [anon_sym_RBRACE] = ACTIONS(6174), - [anon_sym_EQ] = ACTIONS(6176), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6176), - [anon_sym_COLON_QMARK] = ACTIONS(6176), - [anon_sym_COLON_DASH] = ACTIONS(6176), - [anon_sym_PERCENT] = ACTIONS(6176), - [anon_sym_DASH] = ACTIONS(6176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3021), + [anon_sym_RBRACE] = ACTIONS(6889), + [anon_sym_EQ] = ACTIONS(6891), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6891), + [anon_sym_COLON_QMARK] = ACTIONS(6891), + [anon_sym_COLON_DASH] = ACTIONS(6891), + [anon_sym_PERCENT] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2605] = { - [sym__concat] = ACTIONS(2948), - [sym_variable_name] = ACTIONS(2948), - [anon_sym_esac] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2950), - [anon_sym_PIPE_AMP] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [sym__special_characters] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [anon_sym_LT_LPAREN] = ACTIONS(2950), - [anon_sym_GT_LPAREN] = ACTIONS(2950), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), - [sym_word] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), + [2888] = { + [sym__concat] = ACTIONS(2985), + [sym_variable_name] = ACTIONS(2985), + [anon_sym_esac] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2987), + [sym_word] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), }, - [2606] = { - [sym_concatenation] = STATE(2670), + [2889] = { + [sym_concatenation] = STATE(3023), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2670), - [anon_sym_RBRACE] = ACTIONS(6180), - [anon_sym_EQ] = ACTIONS(6182), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3023), + [anon_sym_RBRACE] = ACTIONS(6895), + [anon_sym_EQ] = ACTIONS(6897), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6897), + [anon_sym_COLON_QMARK] = ACTIONS(6897), + [anon_sym_COLON_DASH] = ACTIONS(6897), + [anon_sym_PERCENT] = ACTIONS(6897), + [anon_sym_DASH] = ACTIONS(6897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [2890] = { + [sym__concat] = ACTIONS(3030), + [sym_variable_name] = ACTIONS(3030), + [anon_sym_esac] = ACTIONS(3032), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3032), + [sym_word] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), }, - [2608] = { - [sym_concatenation] = STATE(2672), + [2891] = { + [sym_concatenation] = STATE(3025), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2672), - [anon_sym_RBRACE] = ACTIONS(6186), - [anon_sym_EQ] = ACTIONS(6188), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3025), + [anon_sym_RBRACE] = ACTIONS(6901), + [anon_sym_EQ] = ACTIONS(6903), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6903), + [anon_sym_COLON_QMARK] = ACTIONS(6903), + [anon_sym_COLON_DASH] = ACTIONS(6903), + [anon_sym_PERCENT] = ACTIONS(6903), + [anon_sym_DASH] = ACTIONS(6903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [2892] = { + [sym__concat] = ACTIONS(3040), + [sym_variable_name] = ACTIONS(3040), + [anon_sym_esac] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3042), + [sym_word] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), }, - [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), + [2893] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6907), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_word] = ACTIONS(835), }, - [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), + [2894] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(6907), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_word] = ACTIONS(835), }, - [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), + [2895] = { + [sym__concat] = ACTIONS(3078), + [sym_variable_name] = ACTIONS(3078), + [anon_sym_esac] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3080), + [sym_word] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), }, - [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), + [2896] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6909), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, - [2616] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(6196), + [2897] = { + [sym__concat] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2857), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [2898] = { + [sym__concat] = ACTIONS(2869), + [anon_sym_esac] = ACTIONS(2871), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2871), + [sym_word] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + }, + [2899] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6911), [sym_comment] = ACTIONS(53), }, - [2617] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(6198), + [2900] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6913), [sym_comment] = ACTIONS(53), }, - [2618] = { - [anon_sym_RBRACE] = ACTIONS(6198), + [2901] = { + [anon_sym_RBRACE] = ACTIONS(6913), [sym_comment] = ACTIONS(53), }, - [2619] = { - [sym_concatenation] = STATE(2679), - [sym_string] = STATE(2678), - [sym_simple_expansion] = STATE(2678), - [sym_string_expansion] = STATE(2678), - [sym_expansion] = STATE(2678), - [sym_command_substitution] = STATE(2678), - [sym_process_substitution] = STATE(2678), - [anon_sym_RBRACE] = ACTIONS(6198), - [sym__special_characters] = ACTIONS(6200), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(6202), - [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), + [2902] = { + [sym_concatenation] = STATE(3032), + [sym_string] = STATE(3031), + [sym_simple_expansion] = STATE(3031), + [sym_string_expansion] = STATE(3031), + [sym_expansion] = STATE(3031), + [sym_command_substitution] = STATE(3031), + [sym_process_substitution] = STATE(3031), + [anon_sym_RBRACE] = ACTIONS(6913), + [sym__special_characters] = ACTIONS(6915), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6202), + [sym_word] = ACTIONS(6917), }, - [2620] = { - [sym__concat] = ACTIONS(2868), - [anon_sym_esac] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [sym__special_characters] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2870), - [sym_raw_string] = ACTIONS(2870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), - [anon_sym_BQUOTE] = ACTIONS(2870), - [anon_sym_LT_LPAREN] = ACTIONS(2870), - [anon_sym_GT_LPAREN] = ACTIONS(2870), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2870), - [sym_word] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), + [2903] = { + [sym__concat] = ACTIONS(2905), + [anon_sym_esac] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2907), + [sym_word] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), }, - [2621] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6204), + [2904] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6919), }, - [2622] = { - [sym_concatenation] = STATE(885), + [2905] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6206), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6921), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2623] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_esac] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2878), - [anon_sym_PIPE_AMP] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [sym__special_characters] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), - [anon_sym_BQUOTE] = ACTIONS(2878), - [anon_sym_LT_LPAREN] = ACTIONS(2878), - [anon_sym_GT_LPAREN] = ACTIONS(2878), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), - [sym_word] = ACTIONS(2878), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), + [2906] = { + [sym__concat] = ACTIONS(2913), + [anon_sym_esac] = ACTIONS(2915), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2915), + [sym_word] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), }, - [2624] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6208), + [2907] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6923), }, - [2625] = { - [sym_concatenation] = STATE(885), + [2908] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6210), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6925), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2626] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6212), + [2909] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(6927), }, - [2627] = { - [sym_concatenation] = STATE(885), + [2910] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6198), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6913), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2628] = { - [sym_concatenation] = STATE(2686), + [2911] = { + [sym_concatenation] = STATE(3039), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2686), - [anon_sym_RBRACE] = ACTIONS(6214), - [anon_sym_EQ] = ACTIONS(6216), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6218), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6216), - [anon_sym_COLON_QMARK] = ACTIONS(6216), - [anon_sym_COLON_DASH] = ACTIONS(6216), - [anon_sym_PERCENT] = ACTIONS(6216), - [anon_sym_DASH] = ACTIONS(6216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3039), + [anon_sym_RBRACE] = ACTIONS(6929), + [anon_sym_EQ] = ACTIONS(6931), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6931), + [anon_sym_COLON_QMARK] = ACTIONS(6931), + [anon_sym_COLON_DASH] = ACTIONS(6931), + [anon_sym_PERCENT] = ACTIONS(6931), + [anon_sym_DASH] = ACTIONS(6931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2629] = { - [sym__concat] = ACTIONS(2948), - [anon_sym_esac] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_SEMI_SEMI] = ACTIONS(2950), - [anon_sym_PIPE_AMP] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [sym__special_characters] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR] = ACTIONS(2950), - [sym_raw_string] = ACTIONS(2950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), - [anon_sym_BQUOTE] = ACTIONS(2950), - [anon_sym_LT_LPAREN] = ACTIONS(2950), - [anon_sym_GT_LPAREN] = ACTIONS(2950), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), - [sym_word] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), + [2912] = { + [sym__concat] = ACTIONS(2985), + [anon_sym_esac] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2987), + [sym_word] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), }, - [2630] = { - [sym_concatenation] = STATE(2688), + [2913] = { + [sym_concatenation] = STATE(3041), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2688), - [anon_sym_RBRACE] = ACTIONS(6220), - [anon_sym_EQ] = ACTIONS(6222), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3041), + [anon_sym_RBRACE] = ACTIONS(6935), + [anon_sym_EQ] = ACTIONS(6937), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6937), + [anon_sym_COLON_QMARK] = ACTIONS(6937), + [anon_sym_COLON_DASH] = ACTIONS(6937), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_DASH] = ACTIONS(6937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [2914] = { + [sym__concat] = ACTIONS(3030), + [anon_sym_esac] = ACTIONS(3032), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3032), + [sym_word] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), }, - [2632] = { - [sym_concatenation] = STATE(2690), + [2915] = { + [sym_concatenation] = STATE(3043), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2690), - [anon_sym_RBRACE] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(6228), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [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(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3043), + [anon_sym_RBRACE] = ACTIONS(6941), + [anon_sym_EQ] = ACTIONS(6943), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6943), + [anon_sym_COLON_QMARK] = ACTIONS(6943), + [anon_sym_COLON_DASH] = ACTIONS(6943), + [anon_sym_PERCENT] = ACTIONS(6943), + [anon_sym_DASH] = ACTIONS(6943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [2916] = { + [sym__concat] = ACTIONS(3040), + [anon_sym_esac] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3042), + [sym_word] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), }, - [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), + [2917] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6947), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_word] = ACTIONS(835), }, - [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), + [2918] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(6947), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(819), + [sym_word] = ACTIONS(835), }, - [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), + [2919] = { + [sym__concat] = ACTIONS(3078), + [anon_sym_esac] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5897), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3080), + [sym_word] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), }, - [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), + [2920] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(6949), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5899), + [sym_word] = ACTIONS(835), }, - [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), + [2921] = { + [sym__simple_heredoc_body] = ACTIONS(3903), + [sym__heredoc_body_beginning] = ACTIONS(3903), + [sym_file_descriptor] = ACTIONS(3903), + [sym__concat] = ACTIONS(3903), + [anon_sym_esac] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [anon_sym_EQ_TILDE] = ACTIONS(3905), + [anon_sym_EQ_EQ] = ACTIONS(3905), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_GT_GT] = ACTIONS(3903), + [anon_sym_AMP_GT] = ACTIONS(3905), + [anon_sym_AMP_GT_GT] = ACTIONS(3903), + [anon_sym_LT_AMP] = ACTIONS(3903), + [anon_sym_GT_AMP] = ACTIONS(3903), + [anon_sym_LT_LT] = ACTIONS(3905), + [anon_sym_LT_LT_DASH] = ACTIONS(3903), + [anon_sym_LT_LT_LT] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), }, - [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), + [2922] = { + [sym__simple_heredoc_body] = ACTIONS(3911), + [sym__heredoc_body_beginning] = ACTIONS(3911), + [sym_file_descriptor] = ACTIONS(3911), + [sym__concat] = ACTIONS(3911), + [anon_sym_esac] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [anon_sym_EQ_EQ] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_AMP_GT] = ACTIONS(3913), + [anon_sym_AMP_GT_GT] = ACTIONS(3911), + [anon_sym_LT_AMP] = ACTIONS(3911), + [anon_sym_GT_AMP] = ACTIONS(3911), + [anon_sym_LT_LT] = ACTIONS(3913), + [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(3913), + [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(53), + [sym_word] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [2923] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6951), + [sym_comment] = ACTIONS(53), + }, + [2924] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(6953), + [sym_comment] = ACTIONS(53), + }, + [2925] = { + [anon_sym_RBRACE] = ACTIONS(6953), + [sym_comment] = ACTIONS(53), + }, + [2926] = { + [sym_concatenation] = STATE(3049), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3049), + [anon_sym_RBRACE] = ACTIONS(6955), + [anon_sym_EQ] = ACTIONS(6957), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6957), + [anon_sym_COLON_QMARK] = ACTIONS(6957), + [anon_sym_COLON_DASH] = ACTIONS(6957), + [anon_sym_PERCENT] = ACTIONS(6957), + [anon_sym_DASH] = ACTIONS(6957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2927] = { + [sym__simple_heredoc_body] = ACTIONS(3975), + [sym__heredoc_body_beginning] = ACTIONS(3975), + [sym_file_descriptor] = ACTIONS(3975), + [sym__concat] = ACTIONS(3975), + [anon_sym_esac] = ACTIONS(3977), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_EQ_TILDE] = ACTIONS(3977), + [anon_sym_EQ_EQ] = ACTIONS(3977), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_GT] = ACTIONS(3975), + [anon_sym_AMP_GT] = ACTIONS(3977), + [anon_sym_AMP_GT_GT] = ACTIONS(3975), + [anon_sym_LT_AMP] = ACTIONS(3975), + [anon_sym_GT_AMP] = ACTIONS(3975), + [anon_sym_LT_LT] = ACTIONS(3977), + [anon_sym_LT_LT_DASH] = ACTIONS(3975), + [anon_sym_LT_LT_LT] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), + }, + [2928] = { + [sym_concatenation] = STATE(3051), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3051), + [anon_sym_RBRACE] = ACTIONS(6961), + [anon_sym_EQ] = ACTIONS(6963), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6963), + [anon_sym_COLON_QMARK] = ACTIONS(6963), + [anon_sym_COLON_DASH] = ACTIONS(6963), + [anon_sym_PERCENT] = ACTIONS(6963), + [anon_sym_DASH] = ACTIONS(6963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2929] = { + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [anon_sym_esac] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3987), + [anon_sym_EQ_EQ] = ACTIONS(3987), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3987), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [2930] = { + [sym_concatenation] = STATE(3053), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3053), + [anon_sym_RBRACE] = ACTIONS(6967), + [anon_sym_EQ] = ACTIONS(6969), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6971), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(6969), + [anon_sym_COLON_QMARK] = ACTIONS(6969), + [anon_sym_COLON_DASH] = ACTIONS(6969), + [anon_sym_PERCENT] = ACTIONS(6969), + [anon_sym_DASH] = ACTIONS(6969), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2931] = { + [sym__simple_heredoc_body] = ACTIONS(4040), + [sym__heredoc_body_beginning] = ACTIONS(4040), + [sym_file_descriptor] = ACTIONS(4040), + [sym__concat] = ACTIONS(4040), + [anon_sym_esac] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_EQ_TILDE] = ACTIONS(4042), + [anon_sym_EQ_EQ] = ACTIONS(4042), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_GT_GT] = ACTIONS(4040), + [anon_sym_AMP_GT] = ACTIONS(4042), + [anon_sym_AMP_GT_GT] = ACTIONS(4040), + [anon_sym_LT_AMP] = ACTIONS(4040), + [anon_sym_GT_AMP] = ACTIONS(4040), + [anon_sym_LT_LT] = ACTIONS(4042), + [anon_sym_LT_LT_DASH] = ACTIONS(4040), + [anon_sym_LT_LT_LT] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), + }, + [2932] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6973), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2933] = { + [sym__simple_heredoc_body] = ACTIONS(4062), + [sym__heredoc_body_beginning] = ACTIONS(4062), + [sym_file_descriptor] = ACTIONS(4062), + [sym__concat] = ACTIONS(4062), + [anon_sym_esac] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [anon_sym_EQ_TILDE] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4064), + [anon_sym_GT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_AMP_GT] = ACTIONS(4064), + [anon_sym_AMP_GT_GT] = ACTIONS(4062), + [anon_sym_LT_AMP] = ACTIONS(4062), + [anon_sym_GT_AMP] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_LT_LT_DASH] = ACTIONS(4062), + [anon_sym_LT_LT_LT] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), + }, + [2934] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6975), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2935] = { + [sym__simple_heredoc_body] = ACTIONS(4068), + [sym__heredoc_body_beginning] = ACTIONS(4068), + [sym_file_descriptor] = ACTIONS(4068), + [sym__concat] = ACTIONS(4068), + [anon_sym_esac] = ACTIONS(4070), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_EQ_TILDE] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_GT_GT] = ACTIONS(4068), + [anon_sym_AMP_GT] = ACTIONS(4070), + [anon_sym_AMP_GT_GT] = ACTIONS(4068), + [anon_sym_LT_AMP] = ACTIONS(4068), + [anon_sym_GT_AMP] = ACTIONS(4068), + [anon_sym_LT_LT] = ACTIONS(4070), + [anon_sym_LT_LT_DASH] = ACTIONS(4068), + [anon_sym_LT_LT_LT] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), + }, + [2936] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6977), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2937] = { + [sym__simple_heredoc_body] = ACTIONS(4074), + [sym__heredoc_body_beginning] = ACTIONS(4074), + [sym_file_descriptor] = ACTIONS(4074), + [sym__concat] = ACTIONS(4074), + [anon_sym_esac] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_EQ_TILDE] = ACTIONS(4076), + [anon_sym_EQ_EQ] = ACTIONS(4076), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_AMP_GT] = ACTIONS(4076), + [anon_sym_AMP_GT_GT] = ACTIONS(4074), + [anon_sym_LT_AMP] = ACTIONS(4074), + [anon_sym_GT_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_LT_LT_DASH] = ACTIONS(4074), + [anon_sym_LT_LT_LT] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), + }, + [2938] = { + [sym__simple_heredoc_body] = ACTIONS(4098), + [sym__heredoc_body_beginning] = ACTIONS(4098), + [sym_file_descriptor] = ACTIONS(4098), + [sym__concat] = ACTIONS(4098), + [anon_sym_esac] = ACTIONS(4100), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_EQ_TILDE] = ACTIONS(4100), + [anon_sym_EQ_EQ] = ACTIONS(4100), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_GT_GT] = ACTIONS(4098), + [anon_sym_AMP_GT] = ACTIONS(4100), + [anon_sym_AMP_GT_GT] = ACTIONS(4098), + [anon_sym_LT_AMP] = ACTIONS(4098), + [anon_sym_GT_AMP] = ACTIONS(4098), + [anon_sym_LT_LT] = ACTIONS(4100), + [anon_sym_LT_LT_DASH] = ACTIONS(4098), + [anon_sym_LT_LT_LT] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), + }, + [2939] = { + [sym__simple_heredoc_body] = ACTIONS(1664), + [sym__heredoc_body_beginning] = ACTIONS(1664), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(1664), + [anon_sym_esac] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [2940] = { + [aux_sym_concatenation_repeat1] = STATE(2940), + [sym__simple_heredoc_body] = ACTIONS(1664), + [sym__heredoc_body_beginning] = ACTIONS(1664), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(6979), + [anon_sym_esac] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [2941] = { + [sym__simple_heredoc_body] = ACTIONS(1671), + [sym__heredoc_body_beginning] = ACTIONS(1671), + [sym_file_descriptor] = ACTIONS(1671), + [sym__concat] = ACTIONS(1671), + [anon_sym_esac] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_SEMI_SEMI] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_GT] = ACTIONS(1671), + [anon_sym_AMP_GT] = ACTIONS(1673), + [anon_sym_AMP_GT_GT] = ACTIONS(1671), + [anon_sym_LT_AMP] = ACTIONS(1671), + [anon_sym_GT_AMP] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1673), + [anon_sym_LT_LT_DASH] = ACTIONS(1671), + [anon_sym_LT_LT_LT] = ACTIONS(1671), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_LF] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), + }, + [2942] = { + [anon_sym_DQUOTE] = ACTIONS(6982), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [sym_comment] = ACTIONS(243), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_0] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + }, + [2943] = { + [sym_concatenation] = STATE(3061), + [sym_string] = STATE(3060), + [sym_simple_expansion] = STATE(3060), + [sym_string_expansion] = STATE(3060), + [sym_expansion] = STATE(3060), + [sym_command_substitution] = STATE(3060), + [sym_process_substitution] = STATE(3060), + [anon_sym_RBRACE] = ACTIONS(6984), + [sym__special_characters] = ACTIONS(6986), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(6988), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6988), + }, + [2944] = { + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(6990), + [sym_comment] = ACTIONS(53), + }, + [2945] = { + [sym_concatenation] = STATE(3065), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3065), + [anon_sym_RBRACE] = ACTIONS(6992), + [anon_sym_EQ] = ACTIONS(6994), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(6996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(6998), + [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(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2946] = { + [sym_concatenation] = STATE(3068), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3068), + [anon_sym_RBRACE] = ACTIONS(7000), + [anon_sym_EQ] = ACTIONS(7002), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7004), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(7006), + [anon_sym_COLON] = ACTIONS(7002), + [anon_sym_COLON_QMARK] = ACTIONS(7002), + [anon_sym_COLON_DASH] = ACTIONS(7002), + [anon_sym_PERCENT] = ACTIONS(7002), + [anon_sym_DASH] = ACTIONS(7002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2947] = { + [sym_concatenation] = STATE(3070), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3070), + [anon_sym_RBRACE] = ACTIONS(6984), + [anon_sym_EQ] = ACTIONS(7008), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(7012), + [anon_sym_COLON] = ACTIONS(7008), + [anon_sym_COLON_QMARK] = ACTIONS(7008), + [anon_sym_COLON_DASH] = ACTIONS(7008), + [anon_sym_PERCENT] = ACTIONS(7008), + [anon_sym_DASH] = ACTIONS(7008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2948] = { + [sym__simple_heredoc_body] = ACTIONS(1788), + [sym__heredoc_body_beginning] = ACTIONS(1788), + [sym_file_descriptor] = ACTIONS(1788), + [sym__concat] = ACTIONS(1788), + [anon_sym_esac] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_SEMI_SEMI] = ACTIONS(1788), + [anon_sym_PIPE_AMP] = ACTIONS(1788), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_PIPE_PIPE] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_GT] = ACTIONS(1790), + [anon_sym_GT_GT] = ACTIONS(1788), + [anon_sym_AMP_GT] = ACTIONS(1790), + [anon_sym_AMP_GT_GT] = ACTIONS(1788), + [anon_sym_LT_AMP] = ACTIONS(1788), + [anon_sym_GT_AMP] = ACTIONS(1788), + [anon_sym_LT_LT] = ACTIONS(1790), + [anon_sym_LT_LT_DASH] = ACTIONS(1788), + [anon_sym_LT_LT_LT] = ACTIONS(1788), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LF] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1790), + }, + [2949] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(7014), + }, + [2950] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7016), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2951] = { + [sym__simple_heredoc_body] = ACTIONS(1832), + [sym__heredoc_body_beginning] = ACTIONS(1832), + [sym_file_descriptor] = ACTIONS(1832), + [sym__concat] = ACTIONS(1832), + [anon_sym_esac] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1834), + [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(1834), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_AMP_GT] = ACTIONS(1834), + [anon_sym_AMP_GT_GT] = ACTIONS(1832), + [anon_sym_LT_AMP] = ACTIONS(1832), + [anon_sym_GT_AMP] = ACTIONS(1832), + [anon_sym_LT_LT] = ACTIONS(1834), + [anon_sym_LT_LT_DASH] = ACTIONS(1832), + [anon_sym_LT_LT_LT] = ACTIONS(1832), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1834), + }, + [2952] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(7018), + }, + [2953] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7020), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2954] = { + [sym__simple_heredoc_body] = ACTIONS(1840), + [sym__heredoc_body_beginning] = ACTIONS(1840), + [sym_file_descriptor] = ACTIONS(1840), + [sym__concat] = ACTIONS(1840), + [anon_sym_esac] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_SEMI_SEMI] = ACTIONS(1840), + [anon_sym_PIPE_AMP] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1840), + [anon_sym_PIPE_PIPE] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_GT] = ACTIONS(1842), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_AMP_GT] = ACTIONS(1842), + [anon_sym_AMP_GT_GT] = ACTIONS(1840), + [anon_sym_LT_AMP] = ACTIONS(1840), + [anon_sym_GT_AMP] = ACTIONS(1840), + [anon_sym_LT_LT] = ACTIONS(1842), + [anon_sym_LT_LT_DASH] = ACTIONS(1840), + [anon_sym_LT_LT_LT] = ACTIONS(1840), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_LF] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1842), + }, + [2955] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(7022), + }, + [2956] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(6984), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [2957] = { + [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(1846), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_SEMI_SEMI] = 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), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_LF] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1848), + }, + [2958] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(7024), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2959] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7026), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7026), + [anon_sym_AMP] = ACTIONS(7028), + }, + [2960] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(7024), + [anon_sym_SEMI_SEMI] = ACTIONS(7026), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), [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), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(7028), + [anon_sym_LF] = ACTIONS(7026), + [anon_sym_AMP] = ACTIONS(7028), }, - [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), + [2961] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5907), + [sym_word] = ACTIONS(835), }, - [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), + [2962] = { + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(7030), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(7024), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(7032), + [anon_sym_LF] = ACTIONS(7030), + [anon_sym_AMP] = ACTIONS(7032), }, - [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), + [2963] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(7030), + [anon_sym_PIPE_AMP] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), [anon_sym_GT_GT] = ACTIONS(325), - [anon_sym_AMP_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), [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), + [anon_sym_DOLLAR] = ACTIONS(327), + [sym_raw_string] = ACTIONS(325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_BQUOTE] = ACTIONS(7024), + [anon_sym_LT_LPAREN] = ACTIONS(325), + [anon_sym_GT_LPAREN] = ACTIONS(325), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(7032), + [anon_sym_LF] = ACTIONS(7030), + [anon_sym_AMP] = ACTIONS(7032), + }, + [2964] = { + [sym__simple_heredoc_body] = ACTIONS(1878), + [sym__heredoc_body_beginning] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(1878), + [sym__concat] = ACTIONS(1878), + [anon_sym_esac] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_SEMI_SEMI] = ACTIONS(1878), + [anon_sym_PIPE_AMP] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1878), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1878), + [anon_sym_LT_AMP] = ACTIONS(1878), + [anon_sym_GT_AMP] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1880), + [anon_sym_LT_LT_DASH] = ACTIONS(1878), + [anon_sym_LT_LT_LT] = ACTIONS(1878), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_LF] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + }, + [2965] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(7034), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [2966] = { + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7036), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7036), + [anon_sym_AMP] = ACTIONS(7038), + }, + [2967] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7036), + [anon_sym_PIPE_AMP] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), [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), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7036), + [anon_sym_AMP] = ACTIONS(7038), + }, + [2968] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(6398), + [anon_sym_DQUOTE] = ACTIONS(6400), + [anon_sym_DOLLAR] = ACTIONS(6398), + [sym_raw_string] = ACTIONS(6400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6400), + [anon_sym_BQUOTE] = ACTIONS(6400), + [anon_sym_LT_LPAREN] = ACTIONS(6400), + [anon_sym_GT_LPAREN] = ACTIONS(6400), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6398), + }, + [2969] = { + [sym__special_characters] = ACTIONS(6400), + [anon_sym_DQUOTE] = ACTIONS(6400), + [anon_sym_DOLLAR] = ACTIONS(6398), + [sym_raw_string] = ACTIONS(6400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6400), + [anon_sym_BQUOTE] = ACTIONS(6400), + [anon_sym_LT_LPAREN] = ACTIONS(6400), + [anon_sym_GT_LPAREN] = ACTIONS(6400), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6400), + }, + [2970] = { + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(7040), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(295), [anon_sym_LF] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(285), + [anon_sym_AMP] = ACTIONS(295), }, - [2647] = { - [sym_file_descriptor] = ACTIONS(5282), - [sym__concat] = ACTIONS(5282), - [anon_sym_esac] = ACTIONS(5284), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_RPAREN] = ACTIONS(5284), - [anon_sym_SEMI_SEMI] = ACTIONS(5284), - [anon_sym_PIPE_AMP] = ACTIONS(5284), - [anon_sym_AMP_AMP] = ACTIONS(5284), - [anon_sym_PIPE_PIPE] = ACTIONS(5284), - [anon_sym_LT] = ACTIONS(5284), - [anon_sym_GT] = ACTIONS(5284), - [anon_sym_GT_GT] = ACTIONS(5284), - [anon_sym_AMP_GT] = ACTIONS(5284), - [anon_sym_AMP_GT_GT] = ACTIONS(5284), - [anon_sym_LT_AMP] = ACTIONS(5284), - [anon_sym_GT_AMP] = ACTIONS(5284), - [anon_sym_LT_LT] = ACTIONS(5284), - [anon_sym_LT_LT_DASH] = ACTIONS(5284), - [anon_sym_LT_LT_LT] = ACTIONS(5284), - [anon_sym_BQUOTE] = ACTIONS(5284), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5284), - [anon_sym_LF] = ACTIONS(5282), - [anon_sym_AMP] = ACTIONS(5284), + [2971] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(7040), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(295), }, - [2648] = { - [sym_file_descriptor] = ACTIONS(5286), - [sym__concat] = ACTIONS(5286), - [anon_sym_esac] = ACTIONS(5288), - [anon_sym_PIPE] = ACTIONS(5288), - [anon_sym_RPAREN] = ACTIONS(5288), - [anon_sym_SEMI_SEMI] = ACTIONS(5288), - [anon_sym_PIPE_AMP] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [anon_sym_LT] = ACTIONS(5288), - [anon_sym_GT] = ACTIONS(5288), - [anon_sym_GT_GT] = ACTIONS(5288), - [anon_sym_AMP_GT] = ACTIONS(5288), - [anon_sym_AMP_GT_GT] = ACTIONS(5288), - [anon_sym_LT_AMP] = ACTIONS(5288), - [anon_sym_GT_AMP] = ACTIONS(5288), - [anon_sym_LT_LT] = ACTIONS(5288), - [anon_sym_LT_LT_DASH] = ACTIONS(5288), - [anon_sym_LT_LT_LT] = ACTIONS(5288), - [anon_sym_BQUOTE] = ACTIONS(5288), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5288), - [anon_sym_LF] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5288), + [2972] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(6408), + [anon_sym_DQUOTE] = ACTIONS(6410), + [anon_sym_DOLLAR] = ACTIONS(6408), + [sym_raw_string] = ACTIONS(6410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6410), + [anon_sym_BQUOTE] = ACTIONS(6410), + [anon_sym_LT_LPAREN] = ACTIONS(6410), + [anon_sym_GT_LPAREN] = ACTIONS(6410), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6408), }, - [2649] = { - [sym_file_descriptor] = ACTIONS(5290), - [sym__concat] = ACTIONS(5290), - [anon_sym_esac] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5292), - [anon_sym_RPAREN] = ACTIONS(5292), - [anon_sym_SEMI_SEMI] = ACTIONS(5292), - [anon_sym_PIPE_AMP] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5292), - [anon_sym_GT] = ACTIONS(5292), - [anon_sym_GT_GT] = ACTIONS(5292), - [anon_sym_AMP_GT] = ACTIONS(5292), - [anon_sym_AMP_GT_GT] = ACTIONS(5292), - [anon_sym_LT_AMP] = ACTIONS(5292), - [anon_sym_GT_AMP] = ACTIONS(5292), - [anon_sym_LT_LT] = ACTIONS(5292), - [anon_sym_LT_LT_DASH] = ACTIONS(5292), - [anon_sym_LT_LT_LT] = ACTIONS(5292), - [anon_sym_BQUOTE] = ACTIONS(5292), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LF] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5292), + [2973] = { + [sym__special_characters] = ACTIONS(6410), + [anon_sym_DQUOTE] = ACTIONS(6410), + [anon_sym_DOLLAR] = ACTIONS(6408), + [sym_raw_string] = ACTIONS(6410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6410), + [anon_sym_BQUOTE] = ACTIONS(6410), + [anon_sym_LT_LPAREN] = ACTIONS(6410), + [anon_sym_GT_LPAREN] = ACTIONS(6410), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6410), }, - [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), + [2974] = { + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(295), }, - [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), + [2975] = { + [sym_file_descriptor] = ACTIONS(325), + [sym_variable_name] = ACTIONS(325), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_AMP_GT] = ACTIONS(327), + [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(327), + [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(53), + [sym_word] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(295), }, - [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), + [2976] = { + [sym_file_descriptor] = ACTIONS(5524), + [sym__concat] = ACTIONS(5524), + [anon_sym_esac] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_RPAREN] = ACTIONS(5524), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_LT] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5526), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_AMP_GT] = ACTIONS(5526), + [anon_sym_AMP_GT_GT] = ACTIONS(5524), + [anon_sym_LT_AMP] = ACTIONS(5524), + [anon_sym_GT_AMP] = ACTIONS(5524), + [anon_sym_LT_LT] = ACTIONS(5526), + [anon_sym_LT_LT_DASH] = ACTIONS(5524), + [anon_sym_LT_LT_LT] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), }, - [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), + [2977] = { + [sym_file_descriptor] = ACTIONS(5528), + [sym__concat] = ACTIONS(5528), + [anon_sym_esac] = ACTIONS(5528), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5530), + [anon_sym_GT_GT] = ACTIONS(5528), + [anon_sym_AMP_GT] = ACTIONS(5530), + [anon_sym_AMP_GT_GT] = ACTIONS(5528), + [anon_sym_LT_AMP] = ACTIONS(5528), + [anon_sym_GT_AMP] = ACTIONS(5528), + [anon_sym_LT_LT] = ACTIONS(5530), + [anon_sym_LT_LT_DASH] = ACTIONS(5528), + [anon_sym_LT_LT_LT] = ACTIONS(5528), + [anon_sym_BQUOTE] = ACTIONS(5528), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), }, - [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), + [2978] = { + [sym_file_descriptor] = ACTIONS(5532), + [sym__concat] = ACTIONS(5532), + [anon_sym_esac] = ACTIONS(5532), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_RPAREN] = ACTIONS(5532), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [anon_sym_LT] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5534), + [anon_sym_GT_GT] = ACTIONS(5532), + [anon_sym_AMP_GT] = ACTIONS(5534), + [anon_sym_AMP_GT_GT] = ACTIONS(5532), + [anon_sym_LT_AMP] = ACTIONS(5532), + [anon_sym_GT_AMP] = ACTIONS(5532), + [anon_sym_LT_LT] = ACTIONS(5534), + [anon_sym_LT_LT_DASH] = ACTIONS(5532), + [anon_sym_LT_LT_LT] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), }, - [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), + [2979] = { + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [sym_variable_name] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [sym__special_characters] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [sym_raw_string] = ACTIONS(2855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2855), + [anon_sym_BQUOTE] = ACTIONS(2855), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), }, - [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), + [2980] = { + [sym_file_descriptor] = ACTIONS(2869), + [sym__concat] = ACTIONS(2869), + [sym_variable_name] = ACTIONS(2869), + [anon_sym_esac] = ACTIONS(2871), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_AMP_GT] = ACTIONS(2871), + [anon_sym_AMP_GT_GT] = ACTIONS(2869), + [anon_sym_LT_AMP] = ACTIONS(2869), + [anon_sym_GT_AMP] = ACTIONS(2869), + [sym__special_characters] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_DOLLAR] = ACTIONS(2871), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2869), + [anon_sym_BQUOTE] = ACTIONS(2869), + [anon_sym_LT_LPAREN] = ACTIONS(2869), + [anon_sym_GT_LPAREN] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), }, - [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] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(6240), + [2981] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7044), [sym_comment] = ACTIONS(53), }, - [2660] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(6242), + [2982] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7046), [sym_comment] = ACTIONS(53), }, - [2661] = { - [anon_sym_RBRACE] = ACTIONS(6242), + [2983] = { + [anon_sym_RBRACE] = ACTIONS(7046), [sym_comment] = ACTIONS(53), }, - [2662] = { - [sym_concatenation] = STATE(2700), + [2984] = { + [sym_concatenation] = STATE(3087), + [sym_string] = STATE(3086), + [sym_simple_expansion] = STATE(3086), + [sym_string_expansion] = STATE(3086), + [sym_expansion] = STATE(3086), + [sym_command_substitution] = STATE(3086), + [sym_process_substitution] = STATE(3086), + [anon_sym_RBRACE] = ACTIONS(7046), + [sym__special_characters] = ACTIONS(7048), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(7050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(7050), + }, + [2985] = { + [sym_file_descriptor] = ACTIONS(2905), + [sym__concat] = ACTIONS(2905), + [sym_variable_name] = ACTIONS(2905), + [anon_sym_esac] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2907), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [sym__special_characters] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_DOLLAR] = ACTIONS(2907), + [sym_raw_string] = ACTIONS(2905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2905), + [anon_sym_BQUOTE] = ACTIONS(2905), + [anon_sym_LT_LPAREN] = ACTIONS(2905), + [anon_sym_GT_LPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + }, + [2986] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(7052), + }, + [2987] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2700), - [anon_sym_RBRACE] = ACTIONS(6244), - [anon_sym_EQ] = ACTIONS(6246), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_COLON_QMARK] = ACTIONS(6246), - [anon_sym_COLON_DASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6246), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7054), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2663] = { - [sym__concat] = ACTIONS(3874), - [sym_variable_name] = ACTIONS(3874), - [anon_sym_esac] = ACTIONS(3876), - [anon_sym_PIPE] = ACTIONS(3876), - [anon_sym_SEMI_SEMI] = ACTIONS(3876), - [anon_sym_PIPE_AMP] = ACTIONS(3876), - [anon_sym_AMP_AMP] = ACTIONS(3876), - [anon_sym_PIPE_PIPE] = ACTIONS(3876), - [sym__special_characters] = ACTIONS(3876), - [anon_sym_DQUOTE] = ACTIONS(3876), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym_raw_string] = ACTIONS(3876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), - [anon_sym_BQUOTE] = ACTIONS(3876), - [anon_sym_LT_LPAREN] = ACTIONS(3876), - [anon_sym_GT_LPAREN] = ACTIONS(3876), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3876), - [sym_word] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LF] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3876), + [2988] = { + [sym_file_descriptor] = ACTIONS(2913), + [sym__concat] = ACTIONS(2913), + [sym_variable_name] = ACTIONS(2913), + [anon_sym_esac] = ACTIONS(2915), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_GT] = ACTIONS(2915), + [anon_sym_AMP_GT_GT] = ACTIONS(2913), + [anon_sym_LT_AMP] = ACTIONS(2913), + [anon_sym_GT_AMP] = ACTIONS(2913), + [sym__special_characters] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2915), + [sym_raw_string] = ACTIONS(2913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [anon_sym_LT_LPAREN] = ACTIONS(2913), + [anon_sym_GT_LPAREN] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), }, - [2664] = { - [sym_concatenation] = STATE(2702), + [2989] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(7056), + }, + [2990] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2702), - [anon_sym_RBRACE] = ACTIONS(6250), - [anon_sym_EQ] = ACTIONS(6252), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6252), - [anon_sym_COLON_QMARK] = ACTIONS(6252), - [anon_sym_COLON_DASH] = ACTIONS(6252), - [anon_sym_PERCENT] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7058), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2665] = { - [sym__concat] = ACTIONS(3884), - [sym_variable_name] = ACTIONS(3884), - [anon_sym_esac] = ACTIONS(3886), - [anon_sym_PIPE] = 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__special_characters] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym_raw_string] = ACTIONS(3886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), - [anon_sym_BQUOTE] = ACTIONS(3886), - [anon_sym_LT_LPAREN] = ACTIONS(3886), - [anon_sym_GT_LPAREN] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3886), - [sym_word] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LF] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3886), + [2991] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(7060), }, - [2666] = { - [sym_concatenation] = STATE(2704), + [2992] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2704), - [anon_sym_RBRACE] = ACTIONS(6256), - [anon_sym_EQ] = ACTIONS(6258), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6260), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_QMARK] = ACTIONS(6258), - [anon_sym_COLON_DASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7046), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2667] = { - [sym__concat] = ACTIONS(3939), - [sym_variable_name] = ACTIONS(3939), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), - [sym_word] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), - }, - [2668] = { - [sym_concatenation] = STATE(885), + [2993] = { + [sym_concatenation] = STATE(3094), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6262), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3094), + [anon_sym_RBRACE] = ACTIONS(7062), + [anon_sym_EQ] = ACTIONS(7064), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7064), + [anon_sym_COLON_QMARK] = ACTIONS(7064), + [anon_sym_COLON_DASH] = ACTIONS(7064), + [anon_sym_PERCENT] = ACTIONS(7064), + [anon_sym_DASH] = ACTIONS(7064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [2994] = { + [sym_file_descriptor] = ACTIONS(2985), + [sym__concat] = ACTIONS(2985), + [sym_variable_name] = ACTIONS(2985), + [anon_sym_esac] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_GT] = ACTIONS(2987), + [anon_sym_AMP_GT_GT] = ACTIONS(2985), + [anon_sym_LT_AMP] = ACTIONS(2985), + [anon_sym_GT_AMP] = ACTIONS(2985), + [sym__special_characters] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2987), + [sym_raw_string] = ACTIONS(2985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2985), + [anon_sym_BQUOTE] = ACTIONS(2985), + [anon_sym_LT_LPAREN] = ACTIONS(2985), + [anon_sym_GT_LPAREN] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), }, - [2670] = { - [sym_concatenation] = STATE(885), + [2995] = { + [sym_concatenation] = STATE(3096), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6264), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3096), + [anon_sym_RBRACE] = ACTIONS(7068), + [anon_sym_EQ] = ACTIONS(7070), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7072), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7070), + [anon_sym_COLON_QMARK] = ACTIONS(7070), + [anon_sym_COLON_DASH] = ACTIONS(7070), + [anon_sym_PERCENT] = ACTIONS(7070), + [anon_sym_DASH] = ACTIONS(7070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [2996] = { + [sym_file_descriptor] = ACTIONS(3030), + [sym__concat] = ACTIONS(3030), + [sym_variable_name] = ACTIONS(3030), + [anon_sym_esac] = ACTIONS(3032), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_GT] = ACTIONS(3032), + [anon_sym_AMP_GT_GT] = ACTIONS(3030), + [anon_sym_LT_AMP] = ACTIONS(3030), + [anon_sym_GT_AMP] = ACTIONS(3030), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [sym_raw_string] = ACTIONS(3030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3030), + [anon_sym_BQUOTE] = ACTIONS(3030), + [anon_sym_LT_LPAREN] = ACTIONS(3030), + [anon_sym_GT_LPAREN] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), }, - [2672] = { - [sym_concatenation] = STATE(885), + [2997] = { + [sym_concatenation] = STATE(3098), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6266), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3098), + [anon_sym_RBRACE] = ACTIONS(7074), + [anon_sym_EQ] = ACTIONS(7076), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7076), + [anon_sym_COLON_QMARK] = ACTIONS(7076), + [anon_sym_COLON_DASH] = ACTIONS(7076), + [anon_sym_PERCENT] = ACTIONS(7076), + [anon_sym_DASH] = ACTIONS(7076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [2998] = { + [sym_file_descriptor] = ACTIONS(3040), + [sym__concat] = ACTIONS(3040), + [sym_variable_name] = ACTIONS(3040), + [anon_sym_esac] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_GT] = ACTIONS(3042), + [anon_sym_AMP_GT_GT] = ACTIONS(3040), + [anon_sym_LT_AMP] = ACTIONS(3040), + [anon_sym_GT_AMP] = ACTIONS(3040), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(3042), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3040), + [anon_sym_BQUOTE] = ACTIONS(3040), + [anon_sym_LT_LPAREN] = ACTIONS(3040), + [anon_sym_GT_LPAREN] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), }, - [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), + [2999] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(7080), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, - [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), + [3000] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(7080), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), }, - [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), + [3001] = { + [sym_file_descriptor] = ACTIONS(3078), + [sym__concat] = ACTIONS(3078), + [sym_variable_name] = ACTIONS(3078), + [anon_sym_esac] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_GT] = ACTIONS(3080), + [anon_sym_AMP_GT_GT] = ACTIONS(3078), + [anon_sym_LT_AMP] = ACTIONS(3078), + [anon_sym_GT_AMP] = ACTIONS(3078), + [sym__special_characters] = ACTIONS(3078), + [anon_sym_DQUOTE] = ACTIONS(3078), + [anon_sym_DOLLAR] = ACTIONS(3080), + [sym_raw_string] = ACTIONS(3078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3078), + [anon_sym_BQUOTE] = ACTIONS(3078), + [anon_sym_LT_LPAREN] = ACTIONS(3078), + [anon_sym_GT_LPAREN] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), }, - [2677] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(6268), + [3002] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(7082), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [3003] = { + [aux_sym_concatenation_repeat1] = STATE(3005), + [sym__concat] = ACTIONS(1053), + [anon_sym_esac] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), + }, + [3004] = { + [aux_sym_concatenation_repeat1] = STATE(3005), + [sym__concat] = ACTIONS(1053), + [anon_sym_esac] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [3005] = { + [aux_sym_concatenation_repeat1] = STATE(3101), + [sym__concat] = ACTIONS(1053), + [anon_sym_esac] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [3006] = { + [aux_sym_concatenation_repeat1] = STATE(3008), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(3647), + [anon_sym_esac] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), + }, + [3007] = { + [aux_sym_concatenation_repeat1] = STATE(3008), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(3647), + [anon_sym_esac] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [3008] = { + [aux_sym_concatenation_repeat1] = STATE(3102), + [sym_file_descriptor] = ACTIONS(695), + [sym__concat] = ACTIONS(3647), + [anon_sym_esac] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(697), + [anon_sym_SEMI_SEMI] = ACTIONS(695), + [anon_sym_PIPE_AMP] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(695), + [anon_sym_PIPE_PIPE] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_LT_LT] = ACTIONS(697), + [anon_sym_LT_LT_DASH] = ACTIONS(695), + [anon_sym_LT_LT_LT] = ACTIONS(695), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_LF] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + }, + [3009] = { + [sym_variable_name] = ACTIONS(3201), + [anon_sym_esac] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_SEMI_SEMI] = ACTIONS(3201), + [anon_sym_PIPE_AMP] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [sym__special_characters] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [anon_sym_DOLLAR] = ACTIONS(3203), + [sym_raw_string] = ACTIONS(3201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3201), + [anon_sym_BQUOTE] = ACTIONS(3201), + [anon_sym_LT_LPAREN] = ACTIONS(3201), + [anon_sym_GT_LPAREN] = ACTIONS(3201), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3203), + [sym_word] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_LF] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3203), + }, + [3010] = { + [sym__concat] = ACTIONS(3903), + [sym_variable_name] = ACTIONS(3903), + [anon_sym_esac] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3905), + [sym_word] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + }, + [3011] = { + [sym__concat] = ACTIONS(3911), + [sym_variable_name] = ACTIONS(3911), + [anon_sym_esac] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3913), + [sym_word] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [3012] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7084), [sym_comment] = ACTIONS(53), }, - [2678] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(6270), + [3013] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7086), [sym_comment] = ACTIONS(53), }, - [2679] = { - [anon_sym_RBRACE] = ACTIONS(6270), + [3014] = { + [anon_sym_RBRACE] = ACTIONS(7086), [sym_comment] = ACTIONS(53), }, - [2680] = { - [sym_concatenation] = STATE(2711), + [3015] = { + [sym_concatenation] = STATE(3106), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2711), - [anon_sym_RBRACE] = ACTIONS(6272), - [anon_sym_EQ] = ACTIONS(6274), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6274), - [anon_sym_COLON_QMARK] = ACTIONS(6274), - [anon_sym_COLON_DASH] = ACTIONS(6274), - [anon_sym_PERCENT] = ACTIONS(6274), - [anon_sym_DASH] = ACTIONS(6274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3106), + [anon_sym_RBRACE] = ACTIONS(7088), + [anon_sym_EQ] = ACTIONS(7090), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7090), + [anon_sym_COLON_QMARK] = ACTIONS(7090), + [anon_sym_COLON_DASH] = ACTIONS(7090), + [anon_sym_PERCENT] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7090), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2681] = { - [sym__concat] = ACTIONS(3874), - [anon_sym_esac] = ACTIONS(3876), - [anon_sym_PIPE] = ACTIONS(3876), - [anon_sym_SEMI_SEMI] = ACTIONS(3876), - [anon_sym_PIPE_AMP] = ACTIONS(3876), - [anon_sym_AMP_AMP] = ACTIONS(3876), - [anon_sym_PIPE_PIPE] = ACTIONS(3876), - [sym__special_characters] = ACTIONS(3876), - [anon_sym_DQUOTE] = ACTIONS(3876), - [anon_sym_DOLLAR] = ACTIONS(3876), - [sym_raw_string] = ACTIONS(3876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), - [anon_sym_BQUOTE] = ACTIONS(3876), - [anon_sym_LT_LPAREN] = ACTIONS(3876), - [anon_sym_GT_LPAREN] = ACTIONS(3876), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3876), - [sym_word] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LF] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3876), - }, - [2682] = { - [sym_concatenation] = STATE(2713), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2713), - [anon_sym_RBRACE] = ACTIONS(6278), - [anon_sym_EQ] = ACTIONS(6280), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6280), - [anon_sym_COLON_QMARK] = ACTIONS(6280), - [anon_sym_COLON_DASH] = ACTIONS(6280), - [anon_sym_PERCENT] = ACTIONS(6280), - [anon_sym_DASH] = ACTIONS(6280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2683] = { - [sym__concat] = ACTIONS(3884), - [anon_sym_esac] = ACTIONS(3886), - [anon_sym_PIPE] = 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__special_characters] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [anon_sym_DOLLAR] = ACTIONS(3886), - [sym_raw_string] = ACTIONS(3886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), - [anon_sym_BQUOTE] = ACTIONS(3886), - [anon_sym_LT_LPAREN] = ACTIONS(3886), - [anon_sym_GT_LPAREN] = ACTIONS(3886), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3886), - [sym_word] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LF] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3886), - }, - [2684] = { - [sym_concatenation] = STATE(2715), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(2715), - [anon_sym_RBRACE] = ACTIONS(6284), - [anon_sym_EQ] = ACTIONS(6286), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(6288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(6286), - [anon_sym_COLON_QMARK] = ACTIONS(6286), - [anon_sym_COLON_DASH] = ACTIONS(6286), - [anon_sym_PERCENT] = ACTIONS(6286), - [anon_sym_DASH] = ACTIONS(6286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [2685] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3941), - [anon_sym_PIPE_AMP] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_PIPE_PIPE] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), - [anon_sym_BQUOTE] = ACTIONS(3941), - [anon_sym_LT_LPAREN] = ACTIONS(3941), - [anon_sym_GT_LPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), - [sym_word] = ACTIONS(3941), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), - }, - [2686] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6290), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6292), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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(885), - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6294), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), - }, - [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), + [3016] = { + [sym__concat] = ACTIONS(3975), + [sym_variable_name] = ACTIONS(3975), + [anon_sym_esac] = ACTIONS(3977), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6113), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3977), + [sym_word] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), }, - [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), + [3017] = { + [sym_concatenation] = STATE(3108), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3108), + [anon_sym_RBRACE] = ACTIONS(7094), + [anon_sym_EQ] = ACTIONS(7096), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7096), + [anon_sym_COLON_QMARK] = ACTIONS(7096), + [anon_sym_COLON_DASH] = ACTIONS(7096), + [anon_sym_PERCENT] = ACTIONS(7096), + [anon_sym_DASH] = ACTIONS(7096), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3018] = { + [sym__concat] = ACTIONS(3985), + [sym_variable_name] = ACTIONS(3985), + [anon_sym_esac] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6119), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3987), + [sym_word] = ACTIONS(3987), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), }, - [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(4720), - [sym_variable_name] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4722), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_SEMI_SEMI] = ACTIONS(4722), - [anon_sym_PIPE_AMP] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [sym__special_characters] = ACTIONS(4722), - [anon_sym_DQUOTE] = ACTIONS(4722), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym_raw_string] = ACTIONS(4722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), - [anon_sym_BQUOTE] = ACTIONS(4722), - [anon_sym_LT_LPAREN] = ACTIONS(4722), - [anon_sym_GT_LPAREN] = ACTIONS(4722), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4722), - [sym_word] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LF] = ACTIONS(4720), - [anon_sym_AMP] = ACTIONS(4722), - }, - [2698] = { - [sym__concat] = ACTIONS(4724), - [sym_variable_name] = ACTIONS(4724), - [anon_sym_esac] = ACTIONS(4726), - [anon_sym_PIPE] = ACTIONS(4726), - [anon_sym_SEMI_SEMI] = ACTIONS(4726), - [anon_sym_PIPE_AMP] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [sym__special_characters] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4726), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym_raw_string] = ACTIONS(4726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), - [anon_sym_BQUOTE] = ACTIONS(4726), - [anon_sym_LT_LPAREN] = ACTIONS(4726), - [anon_sym_GT_LPAREN] = ACTIONS(4726), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4726), - [sym_word] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_LF] = ACTIONS(4724), - [anon_sym_AMP] = ACTIONS(4726), - }, - [2699] = { - [sym__concat] = ACTIONS(4728), - [sym_variable_name] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4730), - [anon_sym_SEMI_SEMI] = ACTIONS(4730), - [anon_sym_PIPE_AMP] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4730), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym_raw_string] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), - [anon_sym_BQUOTE] = ACTIONS(4730), - [anon_sym_LT_LPAREN] = ACTIONS(4730), - [anon_sym_GT_LPAREN] = ACTIONS(4730), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4728), - [anon_sym_AMP] = ACTIONS(4730), - }, - [2700] = { - [sym_concatenation] = STATE(885), + [3019] = { + [sym_concatenation] = STATE(3110), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6296), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3110), + [anon_sym_RBRACE] = ACTIONS(7100), + [anon_sym_EQ] = ACTIONS(7102), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7102), + [anon_sym_COLON_QMARK] = ACTIONS(7102), + [anon_sym_COLON_DASH] = ACTIONS(7102), + [anon_sym_PERCENT] = ACTIONS(7102), + [anon_sym_DASH] = ACTIONS(7102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2701] = { - [sym__concat] = ACTIONS(4734), - [sym_variable_name] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [anon_sym_PIPE] = ACTIONS(4736), - [anon_sym_SEMI_SEMI] = ACTIONS(4736), - [anon_sym_PIPE_AMP] = ACTIONS(4736), - [anon_sym_AMP_AMP] = ACTIONS(4736), - [anon_sym_PIPE_PIPE] = ACTIONS(4736), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4736), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym_raw_string] = ACTIONS(4736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), - [anon_sym_BQUOTE] = ACTIONS(4736), - [anon_sym_LT_LPAREN] = ACTIONS(4736), - [anon_sym_GT_LPAREN] = ACTIONS(4736), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4734), - [anon_sym_AMP] = ACTIONS(4736), + [3020] = { + [sym__concat] = ACTIONS(4040), + [sym_variable_name] = ACTIONS(4040), + [anon_sym_esac] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4042), + [sym_word] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), }, - [2702] = { - [sym_concatenation] = STATE(885), + [3021] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6298), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7106), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2703] = { - [sym__concat] = ACTIONS(4740), - [sym_variable_name] = ACTIONS(4740), - [anon_sym_esac] = ACTIONS(4742), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_SEMI_SEMI] = ACTIONS(4742), - [anon_sym_PIPE_AMP] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [sym__special_characters] = ACTIONS(4742), - [anon_sym_DQUOTE] = ACTIONS(4742), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym_raw_string] = ACTIONS(4742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), - [anon_sym_BQUOTE] = ACTIONS(4742), - [anon_sym_LT_LPAREN] = ACTIONS(4742), - [anon_sym_GT_LPAREN] = ACTIONS(4742), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4742), - [sym_word] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_LF] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), + [3022] = { + [sym__concat] = ACTIONS(4062), + [sym_variable_name] = ACTIONS(4062), + [anon_sym_esac] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4064), + [sym_word] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), }, - [2704] = { - [sym_concatenation] = STATE(885), + [3023] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6300), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7108), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2705] = { - [sym__concat] = ACTIONS(4782), - [sym_variable_name] = ACTIONS(4782), - [anon_sym_esac] = ACTIONS(4784), - [anon_sym_PIPE] = ACTIONS(4784), - [anon_sym_SEMI_SEMI] = ACTIONS(4784), - [anon_sym_PIPE_AMP] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4784), - [anon_sym_PIPE_PIPE] = ACTIONS(4784), - [sym__special_characters] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4784), - [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(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4784), - [sym_word] = ACTIONS(4784), - [anon_sym_SEMI] = ACTIONS(4784), - [anon_sym_LF] = ACTIONS(4782), - [anon_sym_AMP] = ACTIONS(4784), + [3024] = { + [sym__concat] = ACTIONS(4068), + [sym_variable_name] = ACTIONS(4068), + [anon_sym_esac] = ACTIONS(4070), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4070), + [sym_word] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), }, - [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(4720), - [anon_sym_esac] = ACTIONS(4722), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_SEMI_SEMI] = ACTIONS(4722), - [anon_sym_PIPE_AMP] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [sym__special_characters] = ACTIONS(4722), - [anon_sym_DQUOTE] = ACTIONS(4722), - [anon_sym_DOLLAR] = ACTIONS(4722), - [sym_raw_string] = ACTIONS(4722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), - [anon_sym_BQUOTE] = ACTIONS(4722), - [anon_sym_LT_LPAREN] = ACTIONS(4722), - [anon_sym_GT_LPAREN] = ACTIONS(4722), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4722), - [sym_word] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LF] = ACTIONS(4720), - [anon_sym_AMP] = ACTIONS(4722), - }, - [2709] = { - [sym__concat] = ACTIONS(4724), - [anon_sym_esac] = ACTIONS(4726), - [anon_sym_PIPE] = ACTIONS(4726), - [anon_sym_SEMI_SEMI] = ACTIONS(4726), - [anon_sym_PIPE_AMP] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [sym__special_characters] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4726), - [anon_sym_DOLLAR] = ACTIONS(4726), - [sym_raw_string] = ACTIONS(4726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), - [anon_sym_BQUOTE] = ACTIONS(4726), - [anon_sym_LT_LPAREN] = ACTIONS(4726), - [anon_sym_GT_LPAREN] = ACTIONS(4726), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4726), - [sym_word] = ACTIONS(4726), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_LF] = ACTIONS(4724), - [anon_sym_AMP] = ACTIONS(4726), - }, - [2710] = { - [sym__concat] = ACTIONS(4728), - [anon_sym_esac] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4730), - [anon_sym_SEMI_SEMI] = ACTIONS(4730), - [anon_sym_PIPE_AMP] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4730), - [anon_sym_DOLLAR] = ACTIONS(4730), - [sym_raw_string] = ACTIONS(4730), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), - [anon_sym_BQUOTE] = ACTIONS(4730), - [anon_sym_LT_LPAREN] = ACTIONS(4730), - [anon_sym_GT_LPAREN] = ACTIONS(4730), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), - [sym_word] = ACTIONS(4730), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LF] = ACTIONS(4728), - [anon_sym_AMP] = ACTIONS(4730), - }, - [2711] = { - [sym_concatenation] = STATE(885), + [3025] = { + [sym_concatenation] = STATE(891), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6302), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7110), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2712] = { - [sym__concat] = ACTIONS(4734), - [anon_sym_esac] = ACTIONS(4736), - [anon_sym_PIPE] = ACTIONS(4736), - [anon_sym_SEMI_SEMI] = ACTIONS(4736), - [anon_sym_PIPE_AMP] = ACTIONS(4736), - [anon_sym_AMP_AMP] = ACTIONS(4736), - [anon_sym_PIPE_PIPE] = ACTIONS(4736), - [sym__special_characters] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(4736), - [anon_sym_DOLLAR] = ACTIONS(4736), - [sym_raw_string] = ACTIONS(4736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), - [anon_sym_BQUOTE] = ACTIONS(4736), - [anon_sym_LT_LPAREN] = ACTIONS(4736), - [anon_sym_GT_LPAREN] = ACTIONS(4736), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), - [sym_word] = ACTIONS(4736), - [anon_sym_SEMI] = ACTIONS(4736), - [anon_sym_LF] = ACTIONS(4734), - [anon_sym_AMP] = ACTIONS(4736), + [3026] = { + [sym__concat] = ACTIONS(4074), + [sym_variable_name] = ACTIONS(4074), + [anon_sym_esac] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), }, - [2713] = { - [sym_concatenation] = STATE(885), + [3027] = { + [sym__concat] = ACTIONS(4098), + [sym_variable_name] = ACTIONS(4098), + [anon_sym_esac] = ACTIONS(4100), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4100), + [sym_word] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), + }, + [3028] = { + [sym__concat] = ACTIONS(3903), + [anon_sym_esac] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3905), + [sym_word] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + }, + [3029] = { + [sym__concat] = ACTIONS(3911), + [anon_sym_esac] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [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(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3913), + [sym_word] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [3030] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7112), + [sym_comment] = ACTIONS(53), + }, + [3031] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7114), + [sym_comment] = ACTIONS(53), + }, + [3032] = { + [anon_sym_RBRACE] = ACTIONS(7114), + [sym_comment] = ACTIONS(53), + }, + [3033] = { + [sym_concatenation] = STATE(3117), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6304), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3117), + [anon_sym_RBRACE] = ACTIONS(7116), + [anon_sym_EQ] = ACTIONS(7118), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7118), + [anon_sym_COLON_QMARK] = ACTIONS(7118), + [anon_sym_COLON_DASH] = ACTIONS(7118), + [anon_sym_PERCENT] = ACTIONS(7118), + [anon_sym_DASH] = ACTIONS(7118), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2714] = { - [sym__concat] = ACTIONS(4740), - [anon_sym_esac] = ACTIONS(4742), - [anon_sym_PIPE] = ACTIONS(4742), - [anon_sym_SEMI_SEMI] = ACTIONS(4742), - [anon_sym_PIPE_AMP] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4742), - [anon_sym_PIPE_PIPE] = ACTIONS(4742), - [sym__special_characters] = ACTIONS(4742), - [anon_sym_DQUOTE] = ACTIONS(4742), - [anon_sym_DOLLAR] = ACTIONS(4742), - [sym_raw_string] = ACTIONS(4742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), - [anon_sym_BQUOTE] = ACTIONS(4742), - [anon_sym_LT_LPAREN] = ACTIONS(4742), - [anon_sym_GT_LPAREN] = ACTIONS(4742), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4742), - [sym_word] = ACTIONS(4742), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_LF] = ACTIONS(4740), - [anon_sym_AMP] = ACTIONS(4742), + [3034] = { + [sym__concat] = ACTIONS(3975), + [anon_sym_esac] = ACTIONS(3977), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3977), + [sym_word] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), }, - [2715] = { - [sym_concatenation] = STATE(885), + [3035] = { + [sym_concatenation] = STATE(3119), [sym_string] = STATE(431), [sym_simple_expansion] = STATE(431), [sym_string_expansion] = STATE(431), [sym_expansion] = STATE(431), [sym_command_substitution] = STATE(431), [sym_process_substitution] = STATE(431), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(6306), - [anon_sym_EQ] = ACTIONS(1812), - [sym__special_characters] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(753), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_COLON_QMARK] = ACTIONS(1812), - [anon_sym_COLON_DASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(767), + [aux_sym_expansion_repeat1] = STATE(3119), + [anon_sym_RBRACE] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7124), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7124), + [anon_sym_COLON_QMARK] = ACTIONS(7124), + [anon_sym_COLON_DASH] = ACTIONS(7124), + [anon_sym_PERCENT] = ACTIONS(7124), + [anon_sym_DASH] = ACTIONS(7124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2716] = { - [sym__concat] = ACTIONS(4782), - [anon_sym_esac] = ACTIONS(4784), - [anon_sym_PIPE] = ACTIONS(4784), - [anon_sym_SEMI_SEMI] = ACTIONS(4784), - [anon_sym_PIPE_AMP] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4784), - [anon_sym_PIPE_PIPE] = ACTIONS(4784), - [sym__special_characters] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4784), - [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(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4784), - [sym_word] = ACTIONS(4784), - [anon_sym_SEMI] = ACTIONS(4784), - [anon_sym_LF] = ACTIONS(4782), - [anon_sym_AMP] = ACTIONS(4784), + [3036] = { + [sym__concat] = ACTIONS(3985), + [anon_sym_esac] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3987), + [sym_word] = ACTIONS(3987), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), }, - [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), + [3037] = { + [sym_concatenation] = STATE(3121), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3121), + [anon_sym_RBRACE] = ACTIONS(7128), + [anon_sym_EQ] = ACTIONS(7130), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7130), + [anon_sym_COLON_QMARK] = ACTIONS(7130), + [anon_sym_COLON_DASH] = ACTIONS(7130), + [anon_sym_PERCENT] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7130), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [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), + [3038] = { + [sym__concat] = ACTIONS(4040), + [anon_sym_esac] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4042), + [sym_word] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), }, - [2719] = { - [sym__concat] = ACTIONS(5282), - [sym_variable_name] = ACTIONS(5282), - [anon_sym_esac] = ACTIONS(5284), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_SEMI_SEMI] = ACTIONS(5284), - [anon_sym_PIPE_AMP] = ACTIONS(5284), - [anon_sym_AMP_AMP] = ACTIONS(5284), - [anon_sym_PIPE_PIPE] = ACTIONS(5284), - [sym__special_characters] = ACTIONS(5284), - [anon_sym_DQUOTE] = ACTIONS(5284), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), - [anon_sym_BQUOTE] = ACTIONS(5284), - [anon_sym_LT_LPAREN] = ACTIONS(5284), - [anon_sym_GT_LPAREN] = ACTIONS(5284), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5284), - [sym_word] = ACTIONS(5284), - [anon_sym_SEMI] = ACTIONS(5284), - [anon_sym_LF] = ACTIONS(5282), - [anon_sym_AMP] = ACTIONS(5284), + [3039] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2720] = { - [sym__concat] = ACTIONS(5286), - [sym_variable_name] = ACTIONS(5286), - [anon_sym_esac] = ACTIONS(5288), - [anon_sym_PIPE] = ACTIONS(5288), - [anon_sym_SEMI_SEMI] = ACTIONS(5288), - [anon_sym_PIPE_AMP] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [sym__special_characters] = ACTIONS(5288), - [anon_sym_DQUOTE] = ACTIONS(5288), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym_raw_string] = ACTIONS(5288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), - [anon_sym_BQUOTE] = ACTIONS(5288), - [anon_sym_LT_LPAREN] = ACTIONS(5288), - [anon_sym_GT_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5288), - [sym_word] = ACTIONS(5288), - [anon_sym_SEMI] = ACTIONS(5288), - [anon_sym_LF] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5288), + [3040] = { + [sym__concat] = ACTIONS(4062), + [anon_sym_esac] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4064), + [sym_word] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), }, - [2721] = { - [sym__concat] = ACTIONS(5290), - [sym_variable_name] = ACTIONS(5290), - [anon_sym_esac] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5292), - [anon_sym_SEMI_SEMI] = ACTIONS(5292), - [anon_sym_PIPE_AMP] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [sym__special_characters] = ACTIONS(5292), - [anon_sym_DQUOTE] = ACTIONS(5292), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym_raw_string] = ACTIONS(5292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), - [anon_sym_BQUOTE] = ACTIONS(5292), - [anon_sym_LT_LPAREN] = ACTIONS(5292), - [anon_sym_GT_LPAREN] = ACTIONS(5292), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5292), - [sym_word] = ACTIONS(5292), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LF] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5292), + [3041] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7136), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2722] = { - [sym__concat] = ACTIONS(5282), - [anon_sym_esac] = ACTIONS(5284), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_SEMI_SEMI] = ACTIONS(5284), - [anon_sym_PIPE_AMP] = ACTIONS(5284), - [anon_sym_AMP_AMP] = ACTIONS(5284), - [anon_sym_PIPE_PIPE] = ACTIONS(5284), - [sym__special_characters] = ACTIONS(5284), - [anon_sym_DQUOTE] = ACTIONS(5284), - [anon_sym_DOLLAR] = ACTIONS(5284), - [sym_raw_string] = ACTIONS(5284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), - [anon_sym_BQUOTE] = ACTIONS(5284), - [anon_sym_LT_LPAREN] = ACTIONS(5284), - [anon_sym_GT_LPAREN] = ACTIONS(5284), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5284), - [sym_word] = ACTIONS(5284), - [anon_sym_SEMI] = ACTIONS(5284), - [anon_sym_LF] = ACTIONS(5282), - [anon_sym_AMP] = ACTIONS(5284), + [3042] = { + [sym__concat] = ACTIONS(4068), + [anon_sym_esac] = ACTIONS(4070), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4070), + [sym_word] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), }, - [2723] = { - [sym__concat] = ACTIONS(5286), - [anon_sym_esac] = ACTIONS(5288), - [anon_sym_PIPE] = ACTIONS(5288), - [anon_sym_SEMI_SEMI] = ACTIONS(5288), - [anon_sym_PIPE_AMP] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [sym__special_characters] = ACTIONS(5288), - [anon_sym_DQUOTE] = ACTIONS(5288), - [anon_sym_DOLLAR] = ACTIONS(5288), - [sym_raw_string] = ACTIONS(5288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), - [anon_sym_BQUOTE] = ACTIONS(5288), - [anon_sym_LT_LPAREN] = ACTIONS(5288), - [anon_sym_GT_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5288), - [sym_word] = ACTIONS(5288), - [anon_sym_SEMI] = ACTIONS(5288), - [anon_sym_LF] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5288), + [3043] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7138), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), }, - [2724] = { - [sym__concat] = ACTIONS(5290), - [anon_sym_esac] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5292), - [anon_sym_SEMI_SEMI] = ACTIONS(5292), - [anon_sym_PIPE_AMP] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [sym__special_characters] = ACTIONS(5292), - [anon_sym_DQUOTE] = ACTIONS(5292), - [anon_sym_DOLLAR] = ACTIONS(5292), - [sym_raw_string] = ACTIONS(5292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), - [anon_sym_BQUOTE] = ACTIONS(5292), - [anon_sym_LT_LPAREN] = ACTIONS(5292), - [anon_sym_GT_LPAREN] = ACTIONS(5292), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5292), - [sym_word] = ACTIONS(5292), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LF] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5292), + [3044] = { + [sym__concat] = ACTIONS(4074), + [anon_sym_esac] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), + }, + [3045] = { + [sym__concat] = ACTIONS(4098), + [anon_sym_esac] = ACTIONS(4100), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4100), + [sym_word] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), + }, + [3046] = { + [sym__simple_heredoc_body] = ACTIONS(4885), + [sym__heredoc_body_beginning] = ACTIONS(4885), + [sym_file_descriptor] = ACTIONS(4885), + [sym__concat] = ACTIONS(4885), + [anon_sym_esac] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_EQ_TILDE] = ACTIONS(4887), + [anon_sym_EQ_EQ] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4887), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [anon_sym_LT_LT] = ACTIONS(4887), + [anon_sym_LT_LT_DASH] = ACTIONS(4885), + [anon_sym_LT_LT_LT] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), + }, + [3047] = { + [sym__simple_heredoc_body] = ACTIONS(4889), + [sym__heredoc_body_beginning] = ACTIONS(4889), + [sym_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_EQ_TILDE] = ACTIONS(4891), + [anon_sym_EQ_EQ] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_LT_LT_DASH] = ACTIONS(4889), + [anon_sym_LT_LT_LT] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), + }, + [3048] = { + [sym__simple_heredoc_body] = ACTIONS(4893), + [sym__heredoc_body_beginning] = ACTIONS(4893), + [sym_file_descriptor] = ACTIONS(4893), + [sym__concat] = ACTIONS(4893), + [anon_sym_esac] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [anon_sym_EQ_TILDE] = ACTIONS(4895), + [anon_sym_EQ_EQ] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_AMP_GT] = ACTIONS(4895), + [anon_sym_AMP_GT_GT] = ACTIONS(4893), + [anon_sym_LT_AMP] = ACTIONS(4893), + [anon_sym_GT_AMP] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4895), + [anon_sym_LT_LT_DASH] = ACTIONS(4893), + [anon_sym_LT_LT_LT] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), + }, + [3049] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7140), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3050] = { + [sym__simple_heredoc_body] = ACTIONS(4899), + [sym__heredoc_body_beginning] = ACTIONS(4899), + [sym_file_descriptor] = ACTIONS(4899), + [sym__concat] = ACTIONS(4899), + [anon_sym_esac] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [anon_sym_EQ_TILDE] = ACTIONS(4901), + [anon_sym_EQ_EQ] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_GT_GT] = ACTIONS(4899), + [anon_sym_AMP_GT] = ACTIONS(4901), + [anon_sym_AMP_GT_GT] = ACTIONS(4899), + [anon_sym_LT_AMP] = ACTIONS(4899), + [anon_sym_GT_AMP] = ACTIONS(4899), + [anon_sym_LT_LT] = ACTIONS(4901), + [anon_sym_LT_LT_DASH] = ACTIONS(4899), + [anon_sym_LT_LT_LT] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4901), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), + }, + [3051] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7142), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3052] = { + [sym__simple_heredoc_body] = ACTIONS(4905), + [sym__heredoc_body_beginning] = ACTIONS(4905), + [sym_file_descriptor] = ACTIONS(4905), + [sym__concat] = ACTIONS(4905), + [anon_sym_esac] = ACTIONS(4907), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [anon_sym_EQ_TILDE] = ACTIONS(4907), + [anon_sym_EQ_EQ] = ACTIONS(4907), + [anon_sym_LT] = ACTIONS(4907), + [anon_sym_GT] = ACTIONS(4907), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_AMP_GT] = ACTIONS(4907), + [anon_sym_AMP_GT_GT] = ACTIONS(4905), + [anon_sym_LT_AMP] = ACTIONS(4905), + [anon_sym_GT_AMP] = ACTIONS(4905), + [anon_sym_LT_LT] = ACTIONS(4907), + [anon_sym_LT_LT_DASH] = ACTIONS(4905), + [anon_sym_LT_LT_LT] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4907), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), + }, + [3053] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7144), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3054] = { + [sym__simple_heredoc_body] = ACTIONS(4947), + [sym__heredoc_body_beginning] = ACTIONS(4947), + [sym_file_descriptor] = ACTIONS(4947), + [sym__concat] = ACTIONS(4947), + [anon_sym_esac] = ACTIONS(4949), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_EQ_TILDE] = ACTIONS(4949), + [anon_sym_EQ_EQ] = ACTIONS(4949), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_AMP_GT] = ACTIONS(4949), + [anon_sym_AMP_GT_GT] = ACTIONS(4947), + [anon_sym_LT_AMP] = ACTIONS(4947), + [anon_sym_GT_AMP] = ACTIONS(4947), + [anon_sym_LT_LT] = ACTIONS(4949), + [anon_sym_LT_LT_DASH] = ACTIONS(4947), + [anon_sym_LT_LT_LT] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), + }, + [3055] = { + [sym__simple_heredoc_body] = ACTIONS(4955), + [sym__heredoc_body_beginning] = ACTIONS(4955), + [sym_file_descriptor] = ACTIONS(4955), + [sym__concat] = ACTIONS(4955), + [anon_sym_esac] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_EQ_TILDE] = ACTIONS(4957), + [anon_sym_EQ_EQ] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_AMP_GT] = ACTIONS(4957), + [anon_sym_AMP_GT_GT] = ACTIONS(4955), + [anon_sym_LT_AMP] = ACTIONS(4955), + [anon_sym_GT_AMP] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_LT_LT_DASH] = ACTIONS(4955), + [anon_sym_LT_LT_LT] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), + }, + [3056] = { + [sym__simple_heredoc_body] = ACTIONS(4959), + [sym__heredoc_body_beginning] = ACTIONS(4959), + [sym_file_descriptor] = ACTIONS(4959), + [sym__concat] = ACTIONS(4959), + [anon_sym_esac] = ACTIONS(4961), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_EQ_TILDE] = ACTIONS(4961), + [anon_sym_EQ_EQ] = ACTIONS(4961), + [anon_sym_LT] = ACTIONS(4961), + [anon_sym_GT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_AMP_GT] = ACTIONS(4961), + [anon_sym_AMP_GT_GT] = ACTIONS(4959), + [anon_sym_LT_AMP] = ACTIONS(4959), + [anon_sym_GT_AMP] = ACTIONS(4959), + [anon_sym_LT_LT] = ACTIONS(4961), + [anon_sym_LT_LT_DASH] = ACTIONS(4959), + [anon_sym_LT_LT_LT] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), + }, + [3057] = { + [sym__simple_heredoc_body] = ACTIONS(2855), + [sym__heredoc_body_beginning] = ACTIONS(2855), + [sym_file_descriptor] = ACTIONS(2855), + [sym__concat] = ACTIONS(2855), + [anon_sym_esac] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_SEMI_SEMI] = ACTIONS(2855), + [anon_sym_PIPE_AMP] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_GT] = ACTIONS(2857), + [anon_sym_AMP_GT_GT] = ACTIONS(2855), + [anon_sym_LT_AMP] = ACTIONS(2855), + [anon_sym_GT_AMP] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2857), + [anon_sym_LT_LT_DASH] = ACTIONS(2855), + [anon_sym_LT_LT_LT] = ACTIONS(2855), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + }, + [3058] = { + [sym__simple_heredoc_body] = ACTIONS(2869), + [sym__heredoc_body_beginning] = ACTIONS(2869), + [sym_file_descriptor] = ACTIONS(2869), + [sym__concat] = ACTIONS(2869), + [anon_sym_esac] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_SEMI_SEMI] = ACTIONS(2869), + [anon_sym_PIPE_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_AMP_GT] = ACTIONS(2871), + [anon_sym_AMP_GT_GT] = ACTIONS(2869), + [anon_sym_LT_AMP] = ACTIONS(2869), + [anon_sym_GT_AMP] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_LT_LT_DASH] = ACTIONS(2869), + [anon_sym_LT_LT_LT] = ACTIONS(2869), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2871), + }, + [3059] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7146), + [sym_comment] = ACTIONS(53), + }, + [3060] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7148), + [sym_comment] = ACTIONS(53), + }, + [3061] = { + [anon_sym_RBRACE] = ACTIONS(7148), + [sym_comment] = ACTIONS(53), + }, + [3062] = { + [sym_concatenation] = STATE(3132), + [sym_string] = STATE(3131), + [sym_simple_expansion] = STATE(3131), + [sym_string_expansion] = STATE(3131), + [sym_expansion] = STATE(3131), + [sym_command_substitution] = STATE(3131), + [sym_process_substitution] = STATE(3131), + [anon_sym_RBRACE] = ACTIONS(7148), + [sym__special_characters] = ACTIONS(7150), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_DOLLAR] = ACTIONS(1752), + [sym_raw_string] = ACTIONS(7152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_LT_LPAREN] = ACTIONS(1762), + [anon_sym_GT_LPAREN] = ACTIONS(1762), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(7152), + }, + [3063] = { + [sym__simple_heredoc_body] = ACTIONS(2905), + [sym__heredoc_body_beginning] = ACTIONS(2905), + [sym_file_descriptor] = ACTIONS(2905), + [sym__concat] = ACTIONS(2905), + [anon_sym_esac] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_GT] = ACTIONS(2907), + [anon_sym_AMP_GT_GT] = ACTIONS(2905), + [anon_sym_LT_AMP] = ACTIONS(2905), + [anon_sym_GT_AMP] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_LT_LT_DASH] = ACTIONS(2905), + [anon_sym_LT_LT_LT] = ACTIONS(2905), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + }, + [3064] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(7154), + }, + [3065] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7156), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3066] = { + [sym__simple_heredoc_body] = ACTIONS(2913), + [sym__heredoc_body_beginning] = ACTIONS(2913), + [sym_file_descriptor] = ACTIONS(2913), + [sym__concat] = ACTIONS(2913), + [anon_sym_esac] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_SEMI_SEMI] = ACTIONS(2913), + [anon_sym_PIPE_AMP] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_GT] = ACTIONS(2915), + [anon_sym_AMP_GT_GT] = ACTIONS(2913), + [anon_sym_LT_AMP] = ACTIONS(2913), + [anon_sym_GT_AMP] = ACTIONS(2913), + [anon_sym_LT_LT] = ACTIONS(2915), + [anon_sym_LT_LT_DASH] = ACTIONS(2913), + [anon_sym_LT_LT_LT] = ACTIONS(2913), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + }, + [3067] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(7158), + }, + [3068] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7160), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3069] = { + [sym_comment] = ACTIONS(243), + [sym_regex_without_right_brace] = ACTIONS(7162), + }, + [3070] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7148), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3071] = { + [sym_concatenation] = STATE(3139), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3139), + [anon_sym_RBRACE] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(7166), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7166), + [anon_sym_COLON_QMARK] = ACTIONS(7166), + [anon_sym_COLON_DASH] = ACTIONS(7166), + [anon_sym_PERCENT] = ACTIONS(7166), + [anon_sym_DASH] = ACTIONS(7166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3072] = { + [sym__simple_heredoc_body] = ACTIONS(2985), + [sym__heredoc_body_beginning] = ACTIONS(2985), + [sym_file_descriptor] = ACTIONS(2985), + [sym__concat] = ACTIONS(2985), + [anon_sym_esac] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_GT] = ACTIONS(2987), + [anon_sym_AMP_GT_GT] = ACTIONS(2985), + [anon_sym_LT_AMP] = ACTIONS(2985), + [anon_sym_GT_AMP] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_LT_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT_LT] = ACTIONS(2985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2987), + }, + [3073] = { + [sym_concatenation] = STATE(3141), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3141), + [anon_sym_RBRACE] = ACTIONS(7170), + [anon_sym_EQ] = ACTIONS(7172), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7172), + [anon_sym_COLON_QMARK] = ACTIONS(7172), + [anon_sym_COLON_DASH] = ACTIONS(7172), + [anon_sym_PERCENT] = ACTIONS(7172), + [anon_sym_DASH] = ACTIONS(7172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3074] = { + [sym__simple_heredoc_body] = ACTIONS(3030), + [sym__heredoc_body_beginning] = ACTIONS(3030), + [sym_file_descriptor] = ACTIONS(3030), + [sym__concat] = ACTIONS(3030), + [anon_sym_esac] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_SEMI_SEMI] = ACTIONS(3030), + [anon_sym_PIPE_AMP] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_GT] = ACTIONS(3032), + [anon_sym_AMP_GT_GT] = ACTIONS(3030), + [anon_sym_LT_AMP] = ACTIONS(3030), + [anon_sym_GT_AMP] = ACTIONS(3030), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_LT_LT_DASH] = ACTIONS(3030), + [anon_sym_LT_LT_LT] = ACTIONS(3030), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + }, + [3075] = { + [sym_concatenation] = STATE(3143), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3143), + [anon_sym_RBRACE] = ACTIONS(7176), + [anon_sym_EQ] = ACTIONS(7178), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7180), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7178), + [anon_sym_COLON_QMARK] = ACTIONS(7178), + [anon_sym_COLON_DASH] = ACTIONS(7178), + [anon_sym_PERCENT] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3076] = { + [sym__simple_heredoc_body] = ACTIONS(3040), + [sym__heredoc_body_beginning] = ACTIONS(3040), + [sym_file_descriptor] = ACTIONS(3040), + [sym__concat] = ACTIONS(3040), + [anon_sym_esac] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_SEMI_SEMI] = ACTIONS(3040), + [anon_sym_PIPE_AMP] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_GT] = ACTIONS(3042), + [anon_sym_AMP_GT_GT] = ACTIONS(3040), + [anon_sym_LT_AMP] = ACTIONS(3040), + [anon_sym_GT_AMP] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3042), + [anon_sym_LT_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT_LT] = ACTIONS(3040), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3042), + }, + [3077] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(7182), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [3078] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(7182), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [3079] = { + [sym__simple_heredoc_body] = ACTIONS(3078), + [sym__heredoc_body_beginning] = ACTIONS(3078), + [sym_file_descriptor] = ACTIONS(3078), + [sym__concat] = ACTIONS(3078), + [anon_sym_esac] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_SEMI_SEMI] = ACTIONS(3078), + [anon_sym_PIPE_AMP] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_GT] = ACTIONS(3080), + [anon_sym_AMP_GT_GT] = ACTIONS(3078), + [anon_sym_LT_AMP] = ACTIONS(3078), + [anon_sym_GT_AMP] = ACTIONS(3078), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_LT_LT_DASH] = ACTIONS(3078), + [anon_sym_LT_LT_LT] = ACTIONS(3078), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), + }, + [3080] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(7184), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_raw_string] = ACTIONS(833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(833), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_LT_LPAREN] = ACTIONS(833), + [anon_sym_GT_LPAREN] = ACTIONS(833), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(835), + }, + [3081] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(6764), + [anon_sym_DQUOTE] = ACTIONS(6766), + [anon_sym_DOLLAR] = ACTIONS(6764), + [sym_raw_string] = ACTIONS(6766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6766), + [anon_sym_BQUOTE] = ACTIONS(6766), + [anon_sym_LT_LPAREN] = ACTIONS(6766), + [anon_sym_GT_LPAREN] = ACTIONS(6766), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6764), + }, + [3082] = { + [sym_file_descriptor] = ACTIONS(833), + [sym_variable_name] = ACTIONS(833), + [anon_sym_for] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_case] = ACTIONS(835), + [anon_sym_SEMI_SEMI] = ACTIONS(833), + [anon_sym_function] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(833), + [anon_sym_declare] = ACTIONS(835), + [anon_sym_typeset] = ACTIONS(835), + [anon_sym_export] = ACTIONS(835), + [anon_sym_readonly] = ACTIONS(835), + [anon_sym_local] = ACTIONS(835), + [anon_sym_unset] = ACTIONS(835), + [anon_sym_unsetenv] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_AMP_GT] = ACTIONS(835), + [anon_sym_AMP_GT_GT] = ACTIONS(833), + [anon_sym_LT_AMP] = ACTIONS(833), + [anon_sym_GT_AMP] = ACTIONS(833), + [sym__special_characters] = ACTIONS(6770), + [anon_sym_DQUOTE] = ACTIONS(6772), + [anon_sym_DOLLAR] = ACTIONS(6770), + [sym_raw_string] = ACTIONS(6772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6772), + [anon_sym_BQUOTE] = ACTIONS(6772), + [anon_sym_LT_LPAREN] = ACTIONS(6772), + [anon_sym_GT_LPAREN] = ACTIONS(6772), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(6770), + }, + [3083] = { + [sym_file_descriptor] = ACTIONS(3903), + [sym__concat] = ACTIONS(3903), + [sym_variable_name] = ACTIONS(3903), + [anon_sym_esac] = ACTIONS(3905), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_GT_GT] = ACTIONS(3903), + [anon_sym_AMP_GT] = ACTIONS(3905), + [anon_sym_AMP_GT_GT] = ACTIONS(3903), + [anon_sym_LT_AMP] = ACTIONS(3903), + [anon_sym_GT_AMP] = ACTIONS(3903), + [sym__special_characters] = ACTIONS(3903), + [anon_sym_DQUOTE] = ACTIONS(3903), + [anon_sym_DOLLAR] = ACTIONS(3905), + [sym_raw_string] = ACTIONS(3903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3903), + [anon_sym_BQUOTE] = ACTIONS(3903), + [anon_sym_LT_LPAREN] = ACTIONS(3903), + [anon_sym_GT_LPAREN] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3905), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + }, + [3084] = { + [sym_file_descriptor] = ACTIONS(3911), + [sym__concat] = ACTIONS(3911), + [sym_variable_name] = ACTIONS(3911), + [anon_sym_esac] = ACTIONS(3913), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_AMP_GT] = ACTIONS(3913), + [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(3913), + [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(53), + [sym_word] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [3085] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7186), + [sym_comment] = ACTIONS(53), + }, + [3086] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7188), + [sym_comment] = ACTIONS(53), + }, + [3087] = { + [anon_sym_RBRACE] = ACTIONS(7188), + [sym_comment] = ACTIONS(53), + }, + [3088] = { + [sym_concatenation] = STATE(3149), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3149), + [anon_sym_RBRACE] = ACTIONS(7190), + [anon_sym_EQ] = ACTIONS(7192), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7192), + [anon_sym_COLON_QMARK] = ACTIONS(7192), + [anon_sym_COLON_DASH] = ACTIONS(7192), + [anon_sym_PERCENT] = ACTIONS(7192), + [anon_sym_DASH] = ACTIONS(7192), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3089] = { + [sym_file_descriptor] = ACTIONS(3975), + [sym__concat] = ACTIONS(3975), + [sym_variable_name] = ACTIONS(3975), + [anon_sym_esac] = ACTIONS(3977), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_GT] = ACTIONS(3975), + [anon_sym_AMP_GT] = ACTIONS(3977), + [anon_sym_AMP_GT_GT] = ACTIONS(3975), + [anon_sym_LT_AMP] = ACTIONS(3975), + [anon_sym_GT_AMP] = ACTIONS(3975), + [sym__special_characters] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3977), + [sym_raw_string] = ACTIONS(3975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), + [anon_sym_BQUOTE] = ACTIONS(3975), + [anon_sym_LT_LPAREN] = ACTIONS(3975), + [anon_sym_GT_LPAREN] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), + }, + [3090] = { + [sym_concatenation] = STATE(3151), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3151), + [anon_sym_RBRACE] = ACTIONS(7196), + [anon_sym_EQ] = ACTIONS(7198), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7198), + [anon_sym_COLON_QMARK] = ACTIONS(7198), + [anon_sym_COLON_DASH] = ACTIONS(7198), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_DASH] = ACTIONS(7198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3091] = { + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [sym_variable_name] = ACTIONS(3985), + [anon_sym_esac] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3987), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [3092] = { + [sym_concatenation] = STATE(3153), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3153), + [anon_sym_RBRACE] = ACTIONS(7202), + [anon_sym_EQ] = ACTIONS(7204), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7204), + [anon_sym_COLON_QMARK] = ACTIONS(7204), + [anon_sym_COLON_DASH] = ACTIONS(7204), + [anon_sym_PERCENT] = ACTIONS(7204), + [anon_sym_DASH] = ACTIONS(7204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3093] = { + [sym_file_descriptor] = ACTIONS(4040), + [sym__concat] = ACTIONS(4040), + [sym_variable_name] = ACTIONS(4040), + [anon_sym_esac] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_GT_GT] = ACTIONS(4040), + [anon_sym_AMP_GT] = ACTIONS(4042), + [anon_sym_AMP_GT_GT] = ACTIONS(4040), + [anon_sym_LT_AMP] = ACTIONS(4040), + [anon_sym_GT_AMP] = ACTIONS(4040), + [sym__special_characters] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(4042), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), + }, + [3094] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7208), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3095] = { + [sym_file_descriptor] = ACTIONS(4062), + [sym__concat] = ACTIONS(4062), + [sym_variable_name] = ACTIONS(4062), + [anon_sym_esac] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4064), + [anon_sym_GT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_AMP_GT] = ACTIONS(4064), + [anon_sym_AMP_GT_GT] = ACTIONS(4062), + [anon_sym_LT_AMP] = ACTIONS(4062), + [anon_sym_GT_AMP] = ACTIONS(4062), + [sym__special_characters] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_DOLLAR] = ACTIONS(4064), + [sym_raw_string] = ACTIONS(4062), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4062), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4062), + [anon_sym_BQUOTE] = ACTIONS(4062), + [anon_sym_LT_LPAREN] = ACTIONS(4062), + [anon_sym_GT_LPAREN] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), + }, + [3096] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7210), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3097] = { + [sym_file_descriptor] = ACTIONS(4068), + [sym__concat] = ACTIONS(4068), + [sym_variable_name] = ACTIONS(4068), + [anon_sym_esac] = ACTIONS(4070), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_GT_GT] = ACTIONS(4068), + [anon_sym_AMP_GT] = ACTIONS(4070), + [anon_sym_AMP_GT_GT] = ACTIONS(4068), + [anon_sym_LT_AMP] = ACTIONS(4068), + [anon_sym_GT_AMP] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [anon_sym_DOLLAR] = ACTIONS(4070), + [sym_raw_string] = ACTIONS(4068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4068), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(4068), + [anon_sym_GT_LPAREN] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), + }, + [3098] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7212), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3099] = { + [sym_file_descriptor] = ACTIONS(4074), + [sym__concat] = ACTIONS(4074), + [sym_variable_name] = ACTIONS(4074), + [anon_sym_esac] = ACTIONS(4076), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_AMP_GT] = ACTIONS(4076), + [anon_sym_AMP_GT_GT] = ACTIONS(4074), + [anon_sym_LT_AMP] = ACTIONS(4074), + [anon_sym_GT_AMP] = ACTIONS(4074), + [sym__special_characters] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [anon_sym_DOLLAR] = ACTIONS(4076), + [sym_raw_string] = ACTIONS(4074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4074), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4074), + [anon_sym_BQUOTE] = ACTIONS(4074), + [anon_sym_LT_LPAREN] = ACTIONS(4074), + [anon_sym_GT_LPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), + }, + [3100] = { + [sym_file_descriptor] = ACTIONS(4098), + [sym__concat] = ACTIONS(4098), + [sym_variable_name] = ACTIONS(4098), + [anon_sym_esac] = ACTIONS(4100), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_GT_GT] = ACTIONS(4098), + [anon_sym_AMP_GT] = ACTIONS(4100), + [anon_sym_AMP_GT_GT] = ACTIONS(4098), + [anon_sym_LT_AMP] = ACTIONS(4098), + [anon_sym_GT_AMP] = ACTIONS(4098), + [sym__special_characters] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_DOLLAR] = ACTIONS(4100), + [sym_raw_string] = ACTIONS(4098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), + [anon_sym_BQUOTE] = ACTIONS(4098), + [anon_sym_LT_LPAREN] = ACTIONS(4098), + [anon_sym_GT_LPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), + }, + [3101] = { + [aux_sym_concatenation_repeat1] = STATE(3101), + [sym__concat] = ACTIONS(3326), + [anon_sym_esac] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [3102] = { + [aux_sym_concatenation_repeat1] = STATE(3102), + [sym_file_descriptor] = ACTIONS(1664), + [sym__concat] = ACTIONS(5389), + [anon_sym_esac] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_SEMI_SEMI] = ACTIONS(1664), + [anon_sym_PIPE_AMP] = ACTIONS(1664), + [anon_sym_AMP_AMP] = ACTIONS(1664), + [anon_sym_PIPE_PIPE] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(1664), + [anon_sym_LT_AMP] = ACTIONS(1664), + [anon_sym_GT_AMP] = ACTIONS(1664), + [anon_sym_LT_LT] = ACTIONS(1666), + [anon_sym_LT_LT_DASH] = ACTIONS(1664), + [anon_sym_LT_LT_LT] = ACTIONS(1664), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + }, + [3103] = { + [sym__concat] = ACTIONS(4885), + [sym_variable_name] = ACTIONS(4885), + [anon_sym_esac] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4887), + [sym_word] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), + }, + [3104] = { + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), + }, + [3105] = { + [sym__concat] = ACTIONS(4893), + [sym_variable_name] = ACTIONS(4893), + [anon_sym_esac] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4895), + [sym_word] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), + }, + [3106] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7214), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3107] = { + [sym__concat] = ACTIONS(4899), + [sym_variable_name] = ACTIONS(4899), + [anon_sym_esac] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4901), + [sym_word] = ACTIONS(4901), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), + }, + [3108] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7216), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3109] = { + [sym__concat] = ACTIONS(4905), + [sym_variable_name] = ACTIONS(4905), + [anon_sym_esac] = ACTIONS(4907), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4907), + [sym_word] = ACTIONS(4907), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), + }, + [3110] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7218), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3111] = { + [sym__concat] = ACTIONS(4947), + [sym_variable_name] = ACTIONS(4947), + [anon_sym_esac] = ACTIONS(4949), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4949), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), + }, + [3112] = { + [sym__concat] = ACTIONS(4955), + [sym_variable_name] = ACTIONS(4955), + [anon_sym_esac] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4957), + [sym_word] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), + }, + [3113] = { + [sym__concat] = ACTIONS(4959), + [sym_variable_name] = ACTIONS(4959), + [anon_sym_esac] = ACTIONS(4961), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4961), + [sym_word] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), + }, + [3114] = { + [sym__concat] = ACTIONS(4885), + [anon_sym_esac] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4887), + [sym_word] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), + }, + [3115] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), + }, + [3116] = { + [sym__concat] = ACTIONS(4893), + [anon_sym_esac] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4895), + [sym_word] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), + }, + [3117] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7220), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3118] = { + [sym__concat] = ACTIONS(4899), + [anon_sym_esac] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4901), + [sym_word] = ACTIONS(4901), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), + }, + [3119] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7222), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3120] = { + [sym__concat] = ACTIONS(4905), + [anon_sym_esac] = ACTIONS(4907), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4907), + [sym_word] = ACTIONS(4907), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), + }, + [3121] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7224), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3122] = { + [sym__concat] = ACTIONS(4947), + [anon_sym_esac] = ACTIONS(4949), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4949), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), + }, + [3123] = { + [sym__concat] = ACTIONS(4955), + [anon_sym_esac] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4957), + [sym_word] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), + }, + [3124] = { + [sym__concat] = ACTIONS(4959), + [anon_sym_esac] = ACTIONS(4961), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4961), + [sym_word] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), + }, + [3125] = { + [sym__simple_heredoc_body] = ACTIONS(5524), + [sym__heredoc_body_beginning] = ACTIONS(5524), + [sym_file_descriptor] = ACTIONS(5524), + [sym__concat] = ACTIONS(5524), + [anon_sym_esac] = ACTIONS(5526), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_EQ_TILDE] = ACTIONS(5526), + [anon_sym_EQ_EQ] = ACTIONS(5526), + [anon_sym_LT] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5526), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_AMP_GT] = ACTIONS(5526), + [anon_sym_AMP_GT_GT] = ACTIONS(5524), + [anon_sym_LT_AMP] = ACTIONS(5524), + [anon_sym_GT_AMP] = ACTIONS(5524), + [anon_sym_LT_LT] = ACTIONS(5526), + [anon_sym_LT_LT_DASH] = ACTIONS(5524), + [anon_sym_LT_LT_LT] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5526), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), + }, + [3126] = { + [sym__simple_heredoc_body] = ACTIONS(5528), + [sym__heredoc_body_beginning] = ACTIONS(5528), + [sym_file_descriptor] = ACTIONS(5528), + [sym__concat] = ACTIONS(5528), + [anon_sym_esac] = ACTIONS(5530), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [anon_sym_EQ_TILDE] = ACTIONS(5530), + [anon_sym_EQ_EQ] = ACTIONS(5530), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5530), + [anon_sym_GT_GT] = ACTIONS(5528), + [anon_sym_AMP_GT] = ACTIONS(5530), + [anon_sym_AMP_GT_GT] = ACTIONS(5528), + [anon_sym_LT_AMP] = ACTIONS(5528), + [anon_sym_GT_AMP] = ACTIONS(5528), + [anon_sym_LT_LT] = ACTIONS(5530), + [anon_sym_LT_LT_DASH] = ACTIONS(5528), + [anon_sym_LT_LT_LT] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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(5530), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), + }, + [3127] = { + [sym__simple_heredoc_body] = ACTIONS(5532), + [sym__heredoc_body_beginning] = ACTIONS(5532), + [sym_file_descriptor] = ACTIONS(5532), + [sym__concat] = ACTIONS(5532), + [anon_sym_esac] = ACTIONS(5534), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [anon_sym_EQ_TILDE] = ACTIONS(5534), + [anon_sym_EQ_EQ] = ACTIONS(5534), + [anon_sym_LT] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5534), + [anon_sym_GT_GT] = ACTIONS(5532), + [anon_sym_AMP_GT] = ACTIONS(5534), + [anon_sym_AMP_GT_GT] = ACTIONS(5532), + [anon_sym_LT_AMP] = ACTIONS(5532), + [anon_sym_GT_AMP] = ACTIONS(5532), + [anon_sym_LT_LT] = ACTIONS(5534), + [anon_sym_LT_LT_DASH] = ACTIONS(5532), + [anon_sym_LT_LT_LT] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5534), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), + }, + [3128] = { + [sym__simple_heredoc_body] = ACTIONS(3903), + [sym__heredoc_body_beginning] = ACTIONS(3903), + [sym_file_descriptor] = ACTIONS(3903), + [sym__concat] = ACTIONS(3903), + [anon_sym_esac] = ACTIONS(3903), + [anon_sym_PIPE] = ACTIONS(3905), + [anon_sym_SEMI_SEMI] = ACTIONS(3903), + [anon_sym_PIPE_AMP] = ACTIONS(3903), + [anon_sym_AMP_AMP] = ACTIONS(3903), + [anon_sym_PIPE_PIPE] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(3905), + [anon_sym_GT] = ACTIONS(3905), + [anon_sym_GT_GT] = ACTIONS(3903), + [anon_sym_AMP_GT] = ACTIONS(3905), + [anon_sym_AMP_GT_GT] = ACTIONS(3903), + [anon_sym_LT_AMP] = ACTIONS(3903), + [anon_sym_GT_AMP] = ACTIONS(3903), + [anon_sym_LT_LT] = ACTIONS(3905), + [anon_sym_LT_LT_DASH] = ACTIONS(3903), + [anon_sym_LT_LT_LT] = ACTIONS(3903), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3905), + }, + [3129] = { + [sym__simple_heredoc_body] = ACTIONS(3911), + [sym__heredoc_body_beginning] = ACTIONS(3911), + [sym_file_descriptor] = ACTIONS(3911), + [sym__concat] = ACTIONS(3911), + [anon_sym_esac] = ACTIONS(3911), + [anon_sym_PIPE] = ACTIONS(3913), + [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(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_AMP_GT] = ACTIONS(3913), + [anon_sym_AMP_GT_GT] = ACTIONS(3911), + [anon_sym_LT_AMP] = ACTIONS(3911), + [anon_sym_GT_AMP] = ACTIONS(3911), + [anon_sym_LT_LT] = ACTIONS(3913), + [anon_sym_LT_LT_DASH] = ACTIONS(3911), + [anon_sym_LT_LT_LT] = ACTIONS(3911), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3913), + }, + [3130] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7226), + [sym_comment] = ACTIONS(53), + }, + [3131] = { + [aux_sym_concatenation_repeat1] = STATE(1302), + [sym__concat] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(7228), + [sym_comment] = ACTIONS(53), + }, + [3132] = { + [anon_sym_RBRACE] = ACTIONS(7228), + [sym_comment] = ACTIONS(53), + }, + [3133] = { + [sym_concatenation] = STATE(3166), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3166), + [anon_sym_RBRACE] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7232), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7232), + [anon_sym_COLON_QMARK] = ACTIONS(7232), + [anon_sym_COLON_DASH] = ACTIONS(7232), + [anon_sym_PERCENT] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3134] = { + [sym__simple_heredoc_body] = ACTIONS(3975), + [sym__heredoc_body_beginning] = ACTIONS(3975), + [sym_file_descriptor] = ACTIONS(3975), + [sym__concat] = ACTIONS(3975), + [anon_sym_esac] = ACTIONS(3975), + [anon_sym_PIPE] = ACTIONS(3977), + [anon_sym_SEMI_SEMI] = ACTIONS(3975), + [anon_sym_PIPE_AMP] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_PIPE_PIPE] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3977), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_GT_GT] = ACTIONS(3975), + [anon_sym_AMP_GT] = ACTIONS(3977), + [anon_sym_AMP_GT_GT] = ACTIONS(3975), + [anon_sym_LT_AMP] = ACTIONS(3975), + [anon_sym_GT_AMP] = ACTIONS(3975), + [anon_sym_LT_LT] = ACTIONS(3977), + [anon_sym_LT_LT_DASH] = ACTIONS(3975), + [anon_sym_LT_LT_LT] = ACTIONS(3975), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3977), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3977), + }, + [3135] = { + [sym_concatenation] = STATE(3168), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3168), + [anon_sym_RBRACE] = ACTIONS(7236), + [anon_sym_EQ] = ACTIONS(7238), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7240), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7238), + [anon_sym_COLON_QMARK] = ACTIONS(7238), + [anon_sym_COLON_DASH] = ACTIONS(7238), + [anon_sym_PERCENT] = ACTIONS(7238), + [anon_sym_DASH] = ACTIONS(7238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3136] = { + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [anon_sym_esac] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [3137] = { + [sym_concatenation] = STATE(3170), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(3170), + [anon_sym_RBRACE] = ACTIONS(7242), + [anon_sym_EQ] = ACTIONS(7244), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(7246), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(7244), + [anon_sym_COLON_QMARK] = ACTIONS(7244), + [anon_sym_COLON_DASH] = ACTIONS(7244), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_DASH] = ACTIONS(7244), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3138] = { + [sym__simple_heredoc_body] = ACTIONS(4040), + [sym__heredoc_body_beginning] = ACTIONS(4040), + [sym_file_descriptor] = ACTIONS(4040), + [sym__concat] = ACTIONS(4040), + [anon_sym_esac] = ACTIONS(4040), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [anon_sym_PIPE_AMP] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_PIPE_PIPE] = ACTIONS(4040), + [anon_sym_LT] = ACTIONS(4042), + [anon_sym_GT] = ACTIONS(4042), + [anon_sym_GT_GT] = ACTIONS(4040), + [anon_sym_AMP_GT] = ACTIONS(4042), + [anon_sym_AMP_GT_GT] = ACTIONS(4040), + [anon_sym_LT_AMP] = ACTIONS(4040), + [anon_sym_GT_AMP] = ACTIONS(4040), + [anon_sym_LT_LT] = ACTIONS(4042), + [anon_sym_LT_LT_DASH] = ACTIONS(4040), + [anon_sym_LT_LT_LT] = ACTIONS(4040), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4042), + }, + [3139] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3140] = { + [sym__simple_heredoc_body] = ACTIONS(4062), + [sym__heredoc_body_beginning] = ACTIONS(4062), + [sym_file_descriptor] = ACTIONS(4062), + [sym__concat] = ACTIONS(4062), + [anon_sym_esac] = ACTIONS(4062), + [anon_sym_PIPE] = ACTIONS(4064), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_PIPE_PIPE] = ACTIONS(4062), + [anon_sym_LT] = ACTIONS(4064), + [anon_sym_GT] = ACTIONS(4064), + [anon_sym_GT_GT] = ACTIONS(4062), + [anon_sym_AMP_GT] = ACTIONS(4064), + [anon_sym_AMP_GT_GT] = ACTIONS(4062), + [anon_sym_LT_AMP] = ACTIONS(4062), + [anon_sym_GT_AMP] = ACTIONS(4062), + [anon_sym_LT_LT] = ACTIONS(4064), + [anon_sym_LT_LT_DASH] = ACTIONS(4062), + [anon_sym_LT_LT_LT] = ACTIONS(4062), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4064), + }, + [3141] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7250), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3142] = { + [sym__simple_heredoc_body] = ACTIONS(4068), + [sym__heredoc_body_beginning] = ACTIONS(4068), + [sym_file_descriptor] = ACTIONS(4068), + [sym__concat] = ACTIONS(4068), + [anon_sym_esac] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(4070), + [anon_sym_SEMI_SEMI] = ACTIONS(4068), + [anon_sym_PIPE_AMP] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_PIPE_PIPE] = ACTIONS(4068), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_GT_GT] = ACTIONS(4068), + [anon_sym_AMP_GT] = ACTIONS(4070), + [anon_sym_AMP_GT_GT] = ACTIONS(4068), + [anon_sym_LT_AMP] = ACTIONS(4068), + [anon_sym_GT_AMP] = ACTIONS(4068), + [anon_sym_LT_LT] = ACTIONS(4070), + [anon_sym_LT_LT_DASH] = ACTIONS(4068), + [anon_sym_LT_LT_LT] = ACTIONS(4068), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4070), + }, + [3143] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7252), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3144] = { + [sym__simple_heredoc_body] = ACTIONS(4074), + [sym__heredoc_body_beginning] = ACTIONS(4074), + [sym_file_descriptor] = ACTIONS(4074), + [sym__concat] = ACTIONS(4074), + [anon_sym_esac] = ACTIONS(4074), + [anon_sym_PIPE] = ACTIONS(4076), + [anon_sym_SEMI_SEMI] = ACTIONS(4074), + [anon_sym_PIPE_AMP] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_LT] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_GT_GT] = ACTIONS(4074), + [anon_sym_AMP_GT] = ACTIONS(4076), + [anon_sym_AMP_GT_GT] = ACTIONS(4074), + [anon_sym_LT_AMP] = ACTIONS(4074), + [anon_sym_GT_AMP] = ACTIONS(4074), + [anon_sym_LT_LT] = ACTIONS(4076), + [anon_sym_LT_LT_DASH] = ACTIONS(4074), + [anon_sym_LT_LT_LT] = ACTIONS(4074), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4076), + }, + [3145] = { + [sym__simple_heredoc_body] = ACTIONS(4098), + [sym__heredoc_body_beginning] = ACTIONS(4098), + [sym_file_descriptor] = ACTIONS(4098), + [sym__concat] = ACTIONS(4098), + [anon_sym_esac] = ACTIONS(4098), + [anon_sym_PIPE] = ACTIONS(4100), + [anon_sym_SEMI_SEMI] = ACTIONS(4098), + [anon_sym_PIPE_AMP] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_PIPE_PIPE] = ACTIONS(4098), + [anon_sym_LT] = ACTIONS(4100), + [anon_sym_GT] = ACTIONS(4100), + [anon_sym_GT_GT] = ACTIONS(4098), + [anon_sym_AMP_GT] = ACTIONS(4100), + [anon_sym_AMP_GT_GT] = ACTIONS(4098), + [anon_sym_LT_AMP] = ACTIONS(4098), + [anon_sym_GT_AMP] = ACTIONS(4098), + [anon_sym_LT_LT] = ACTIONS(4100), + [anon_sym_LT_LT_DASH] = ACTIONS(4098), + [anon_sym_LT_LT_LT] = ACTIONS(4098), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4100), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4100), + }, + [3146] = { + [sym_file_descriptor] = ACTIONS(4885), + [sym__concat] = ACTIONS(4885), + [sym_variable_name] = ACTIONS(4885), + [anon_sym_esac] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4887), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4887), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), + }, + [3147] = { + [sym_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4889), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), + }, + [3148] = { + [sym_file_descriptor] = ACTIONS(4893), + [sym__concat] = ACTIONS(4893), + [sym_variable_name] = ACTIONS(4893), + [anon_sym_esac] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_AMP_GT] = ACTIONS(4895), + [anon_sym_AMP_GT_GT] = ACTIONS(4893), + [anon_sym_LT_AMP] = ACTIONS(4893), + [anon_sym_GT_AMP] = ACTIONS(4893), + [sym__special_characters] = ACTIONS(4893), + [anon_sym_DQUOTE] = ACTIONS(4893), + [anon_sym_DOLLAR] = ACTIONS(4895), + [sym_raw_string] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4893), + [anon_sym_BQUOTE] = ACTIONS(4893), + [anon_sym_LT_LPAREN] = ACTIONS(4893), + [anon_sym_GT_LPAREN] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), + }, + [3149] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7254), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3150] = { + [sym_file_descriptor] = ACTIONS(4899), + [sym__concat] = ACTIONS(4899), + [sym_variable_name] = ACTIONS(4899), + [anon_sym_esac] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_GT_GT] = ACTIONS(4899), + [anon_sym_AMP_GT] = ACTIONS(4901), + [anon_sym_AMP_GT_GT] = ACTIONS(4899), + [anon_sym_LT_AMP] = ACTIONS(4899), + [anon_sym_GT_AMP] = ACTIONS(4899), + [sym__special_characters] = ACTIONS(4899), + [anon_sym_DQUOTE] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [sym_raw_string] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4899), + [anon_sym_BQUOTE] = ACTIONS(4899), + [anon_sym_LT_LPAREN] = ACTIONS(4899), + [anon_sym_GT_LPAREN] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4901), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), + }, + [3151] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3152] = { + [sym_file_descriptor] = ACTIONS(4905), + [sym__concat] = ACTIONS(4905), + [sym_variable_name] = ACTIONS(4905), + [anon_sym_esac] = ACTIONS(4907), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4907), + [anon_sym_GT] = ACTIONS(4907), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_AMP_GT] = ACTIONS(4907), + [anon_sym_AMP_GT_GT] = ACTIONS(4905), + [anon_sym_LT_AMP] = ACTIONS(4905), + [anon_sym_GT_AMP] = ACTIONS(4905), + [sym__special_characters] = ACTIONS(4905), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4905), + [anon_sym_BQUOTE] = ACTIONS(4905), + [anon_sym_LT_LPAREN] = ACTIONS(4905), + [anon_sym_GT_LPAREN] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4907), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), + }, + [3153] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7258), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3154] = { + [sym_file_descriptor] = ACTIONS(4947), + [sym__concat] = ACTIONS(4947), + [sym_variable_name] = ACTIONS(4947), + [anon_sym_esac] = ACTIONS(4949), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_AMP_GT] = ACTIONS(4949), + [anon_sym_AMP_GT_GT] = ACTIONS(4947), + [anon_sym_LT_AMP] = ACTIONS(4947), + [anon_sym_GT_AMP] = ACTIONS(4947), + [sym__special_characters] = ACTIONS(4947), + [anon_sym_DQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR] = ACTIONS(4949), + [sym_raw_string] = ACTIONS(4947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4947), + [anon_sym_BQUOTE] = ACTIONS(4947), + [anon_sym_LT_LPAREN] = ACTIONS(4947), + [anon_sym_GT_LPAREN] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), + }, + [3155] = { + [sym_file_descriptor] = ACTIONS(4955), + [sym__concat] = ACTIONS(4955), + [sym_variable_name] = ACTIONS(4955), + [anon_sym_esac] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_AMP_GT] = ACTIONS(4957), + [anon_sym_AMP_GT_GT] = ACTIONS(4955), + [anon_sym_LT_AMP] = ACTIONS(4955), + [anon_sym_GT_AMP] = ACTIONS(4955), + [sym__special_characters] = ACTIONS(4955), + [anon_sym_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR] = ACTIONS(4957), + [sym_raw_string] = ACTIONS(4955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4955), + [anon_sym_BQUOTE] = ACTIONS(4955), + [anon_sym_LT_LPAREN] = ACTIONS(4955), + [anon_sym_GT_LPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), + }, + [3156] = { + [sym_file_descriptor] = ACTIONS(4959), + [sym__concat] = ACTIONS(4959), + [sym_variable_name] = ACTIONS(4959), + [anon_sym_esac] = ACTIONS(4961), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4961), + [anon_sym_GT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_AMP_GT] = ACTIONS(4961), + [anon_sym_AMP_GT_GT] = ACTIONS(4959), + [anon_sym_LT_AMP] = ACTIONS(4959), + [anon_sym_GT_AMP] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [sym_raw_string] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4959), + [anon_sym_BQUOTE] = ACTIONS(4959), + [anon_sym_LT_LPAREN] = ACTIONS(4959), + [anon_sym_GT_LPAREN] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), + }, + [3157] = { + [sym__concat] = ACTIONS(5524), + [sym_variable_name] = ACTIONS(5524), + [anon_sym_esac] = ACTIONS(5526), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5526), + [sym_word] = ACTIONS(5526), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), + }, + [3158] = { + [sym__concat] = ACTIONS(5528), + [sym_variable_name] = ACTIONS(5528), + [anon_sym_esac] = ACTIONS(5530), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5530), + [sym_word] = ACTIONS(5530), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), + }, + [3159] = { + [sym__concat] = ACTIONS(5532), + [sym_variable_name] = ACTIONS(5532), + [anon_sym_esac] = ACTIONS(5534), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5534), + [sym_word] = ACTIONS(5534), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), + }, + [3160] = { + [sym__concat] = ACTIONS(5524), + [anon_sym_esac] = ACTIONS(5526), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5526), + [sym_word] = ACTIONS(5526), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), + }, + [3161] = { + [sym__concat] = ACTIONS(5528), + [anon_sym_esac] = ACTIONS(5530), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5530), + [sym_word] = ACTIONS(5530), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), + }, + [3162] = { + [sym__concat] = ACTIONS(5532), + [anon_sym_esac] = ACTIONS(5534), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5534), + [sym_word] = ACTIONS(5534), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), + }, + [3163] = { + [sym__simple_heredoc_body] = ACTIONS(4885), + [sym__heredoc_body_beginning] = ACTIONS(4885), + [sym_file_descriptor] = ACTIONS(4885), + [sym__concat] = ACTIONS(4885), + [anon_sym_esac] = ACTIONS(4885), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_GT_GT] = ACTIONS(4885), + [anon_sym_AMP_GT] = ACTIONS(4887), + [anon_sym_AMP_GT_GT] = ACTIONS(4885), + [anon_sym_LT_AMP] = ACTIONS(4885), + [anon_sym_GT_AMP] = ACTIONS(4885), + [anon_sym_LT_LT] = ACTIONS(4887), + [anon_sym_LT_LT_DASH] = ACTIONS(4885), + [anon_sym_LT_LT_LT] = ACTIONS(4885), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4887), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4887), + }, + [3164] = { + [sym__simple_heredoc_body] = ACTIONS(4889), + [sym__heredoc_body_beginning] = ACTIONS(4889), + [sym_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [anon_sym_esac] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(4891), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [anon_sym_LT_LT] = ACTIONS(4891), + [anon_sym_LT_LT_DASH] = ACTIONS(4889), + [anon_sym_LT_LT_LT] = ACTIONS(4889), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4891), + }, + [3165] = { + [sym__simple_heredoc_body] = ACTIONS(4893), + [sym__heredoc_body_beginning] = ACTIONS(4893), + [sym_file_descriptor] = ACTIONS(4893), + [sym__concat] = ACTIONS(4893), + [anon_sym_esac] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [anon_sym_PIPE_AMP] = ACTIONS(4893), + [anon_sym_AMP_AMP] = ACTIONS(4893), + [anon_sym_PIPE_PIPE] = ACTIONS(4893), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_AMP_GT] = ACTIONS(4895), + [anon_sym_AMP_GT_GT] = ACTIONS(4893), + [anon_sym_LT_AMP] = ACTIONS(4893), + [anon_sym_GT_AMP] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4895), + [anon_sym_LT_LT_DASH] = ACTIONS(4893), + [anon_sym_LT_LT_LT] = ACTIONS(4893), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4895), + }, + [3166] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7260), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3167] = { + [sym__simple_heredoc_body] = ACTIONS(4899), + [sym__heredoc_body_beginning] = ACTIONS(4899), + [sym_file_descriptor] = ACTIONS(4899), + [sym__concat] = ACTIONS(4899), + [anon_sym_esac] = ACTIONS(4899), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_SEMI_SEMI] = ACTIONS(4899), + [anon_sym_PIPE_AMP] = ACTIONS(4899), + [anon_sym_AMP_AMP] = ACTIONS(4899), + [anon_sym_PIPE_PIPE] = ACTIONS(4899), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_GT_GT] = ACTIONS(4899), + [anon_sym_AMP_GT] = ACTIONS(4901), + [anon_sym_AMP_GT_GT] = ACTIONS(4899), + [anon_sym_LT_AMP] = ACTIONS(4899), + [anon_sym_GT_AMP] = ACTIONS(4899), + [anon_sym_LT_LT] = ACTIONS(4901), + [anon_sym_LT_LT_DASH] = ACTIONS(4899), + [anon_sym_LT_LT_LT] = ACTIONS(4899), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_LF] = ACTIONS(4899), + [anon_sym_AMP] = ACTIONS(4901), + }, + [3168] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7262), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3169] = { + [sym__simple_heredoc_body] = ACTIONS(4905), + [sym__heredoc_body_beginning] = ACTIONS(4905), + [sym_file_descriptor] = ACTIONS(4905), + [sym__concat] = ACTIONS(4905), + [anon_sym_esac] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_SEMI_SEMI] = ACTIONS(4905), + [anon_sym_PIPE_AMP] = ACTIONS(4905), + [anon_sym_AMP_AMP] = ACTIONS(4905), + [anon_sym_PIPE_PIPE] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4907), + [anon_sym_GT] = ACTIONS(4907), + [anon_sym_GT_GT] = ACTIONS(4905), + [anon_sym_AMP_GT] = ACTIONS(4907), + [anon_sym_AMP_GT_GT] = ACTIONS(4905), + [anon_sym_LT_AMP] = ACTIONS(4905), + [anon_sym_GT_AMP] = ACTIONS(4905), + [anon_sym_LT_LT] = ACTIONS(4907), + [anon_sym_LT_LT_DASH] = ACTIONS(4905), + [anon_sym_LT_LT_LT] = ACTIONS(4905), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_LF] = ACTIONS(4905), + [anon_sym_AMP] = ACTIONS(4907), + }, + [3170] = { + [sym_concatenation] = STATE(891), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(891), + [anon_sym_RBRACE] = ACTIONS(7264), + [anon_sym_EQ] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(763), + [sym_raw_string] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_LT_LPAREN] = ACTIONS(777), + [anon_sym_GT_LPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(243), + [sym_word] = ACTIONS(779), + }, + [3171] = { + [sym__simple_heredoc_body] = ACTIONS(4947), + [sym__heredoc_body_beginning] = ACTIONS(4947), + [sym_file_descriptor] = ACTIONS(4947), + [sym__concat] = ACTIONS(4947), + [anon_sym_esac] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4949), + [anon_sym_SEMI_SEMI] = ACTIONS(4947), + [anon_sym_PIPE_AMP] = ACTIONS(4947), + [anon_sym_AMP_AMP] = ACTIONS(4947), + [anon_sym_PIPE_PIPE] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_AMP_GT] = ACTIONS(4949), + [anon_sym_AMP_GT_GT] = ACTIONS(4947), + [anon_sym_LT_AMP] = ACTIONS(4947), + [anon_sym_GT_AMP] = ACTIONS(4947), + [anon_sym_LT_LT] = ACTIONS(4949), + [anon_sym_LT_LT_DASH] = ACTIONS(4947), + [anon_sym_LT_LT_LT] = ACTIONS(4947), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4949), + [anon_sym_LF] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4949), + }, + [3172] = { + [sym__simple_heredoc_body] = ACTIONS(4955), + [sym__heredoc_body_beginning] = ACTIONS(4955), + [sym_file_descriptor] = ACTIONS(4955), + [sym__concat] = ACTIONS(4955), + [anon_sym_esac] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_SEMI_SEMI] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_PIPE_PIPE] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4957), + [anon_sym_GT] = ACTIONS(4957), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_AMP_GT] = ACTIONS(4957), + [anon_sym_AMP_GT_GT] = ACTIONS(4955), + [anon_sym_LT_AMP] = ACTIONS(4955), + [anon_sym_GT_AMP] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4957), + [anon_sym_LT_LT_DASH] = ACTIONS(4955), + [anon_sym_LT_LT_LT] = ACTIONS(4955), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_LF] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4957), + }, + [3173] = { + [sym__simple_heredoc_body] = ACTIONS(4959), + [sym__heredoc_body_beginning] = ACTIONS(4959), + [sym_file_descriptor] = ACTIONS(4959), + [sym__concat] = ACTIONS(4959), + [anon_sym_esac] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_SEMI_SEMI] = ACTIONS(4959), + [anon_sym_PIPE_AMP] = ACTIONS(4959), + [anon_sym_AMP_AMP] = ACTIONS(4959), + [anon_sym_PIPE_PIPE] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4961), + [anon_sym_GT] = ACTIONS(4961), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_AMP_GT] = ACTIONS(4961), + [anon_sym_AMP_GT_GT] = ACTIONS(4959), + [anon_sym_LT_AMP] = ACTIONS(4959), + [anon_sym_GT_AMP] = ACTIONS(4959), + [anon_sym_LT_LT] = ACTIONS(4961), + [anon_sym_LT_LT_DASH] = ACTIONS(4959), + [anon_sym_LT_LT_LT] = ACTIONS(4959), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_LF] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4961), + }, + [3174] = { + [sym_file_descriptor] = ACTIONS(5524), + [sym__concat] = ACTIONS(5524), + [sym_variable_name] = ACTIONS(5524), + [anon_sym_esac] = ACTIONS(5526), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_LT] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5526), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_AMP_GT] = ACTIONS(5526), + [anon_sym_AMP_GT_GT] = ACTIONS(5524), + [anon_sym_LT_AMP] = ACTIONS(5524), + [anon_sym_GT_AMP] = ACTIONS(5524), + [sym__special_characters] = ACTIONS(5524), + [anon_sym_DQUOTE] = ACTIONS(5524), + [anon_sym_DOLLAR] = ACTIONS(5526), + [sym_raw_string] = ACTIONS(5524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5524), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5524), + [anon_sym_BQUOTE] = ACTIONS(5524), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5526), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), + }, + [3175] = { + [sym_file_descriptor] = ACTIONS(5528), + [sym__concat] = ACTIONS(5528), + [sym_variable_name] = ACTIONS(5528), + [anon_sym_esac] = ACTIONS(5530), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5530), + [anon_sym_GT_GT] = ACTIONS(5528), + [anon_sym_AMP_GT] = ACTIONS(5530), + [anon_sym_AMP_GT_GT] = ACTIONS(5528), + [anon_sym_LT_AMP] = ACTIONS(5528), + [anon_sym_GT_AMP] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_DOLLAR] = ACTIONS(5530), + [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(5530), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), + }, + [3176] = { + [sym_file_descriptor] = ACTIONS(5532), + [sym__concat] = ACTIONS(5532), + [sym_variable_name] = ACTIONS(5532), + [anon_sym_esac] = ACTIONS(5534), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [anon_sym_LT] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5534), + [anon_sym_GT_GT] = ACTIONS(5532), + [anon_sym_AMP_GT] = ACTIONS(5534), + [anon_sym_AMP_GT_GT] = ACTIONS(5532), + [anon_sym_LT_AMP] = ACTIONS(5532), + [anon_sym_GT_AMP] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(5532), + [anon_sym_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR] = ACTIONS(5534), + [sym_raw_string] = ACTIONS(5532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5532), + [anon_sym_BQUOTE] = ACTIONS(5532), + [anon_sym_LT_LPAREN] = ACTIONS(5532), + [anon_sym_GT_LPAREN] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(5534), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), + }, + [3177] = { + [sym__simple_heredoc_body] = ACTIONS(5524), + [sym__heredoc_body_beginning] = ACTIONS(5524), + [sym_file_descriptor] = ACTIONS(5524), + [sym__concat] = ACTIONS(5524), + [anon_sym_esac] = ACTIONS(5524), + [anon_sym_PIPE] = ACTIONS(5526), + [anon_sym_SEMI_SEMI] = ACTIONS(5524), + [anon_sym_PIPE_AMP] = ACTIONS(5524), + [anon_sym_AMP_AMP] = ACTIONS(5524), + [anon_sym_PIPE_PIPE] = ACTIONS(5524), + [anon_sym_LT] = ACTIONS(5526), + [anon_sym_GT] = ACTIONS(5526), + [anon_sym_GT_GT] = ACTIONS(5524), + [anon_sym_AMP_GT] = ACTIONS(5526), + [anon_sym_AMP_GT_GT] = ACTIONS(5524), + [anon_sym_LT_AMP] = ACTIONS(5524), + [anon_sym_GT_AMP] = ACTIONS(5524), + [anon_sym_LT_LT] = ACTIONS(5526), + [anon_sym_LT_LT_DASH] = ACTIONS(5524), + [anon_sym_LT_LT_LT] = ACTIONS(5524), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5526), + [anon_sym_LF] = ACTIONS(5524), + [anon_sym_AMP] = ACTIONS(5526), + }, + [3178] = { + [sym__simple_heredoc_body] = ACTIONS(5528), + [sym__heredoc_body_beginning] = ACTIONS(5528), + [sym_file_descriptor] = ACTIONS(5528), + [sym__concat] = ACTIONS(5528), + [anon_sym_esac] = ACTIONS(5528), + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_SEMI_SEMI] = ACTIONS(5528), + [anon_sym_PIPE_AMP] = ACTIONS(5528), + [anon_sym_AMP_AMP] = ACTIONS(5528), + [anon_sym_PIPE_PIPE] = ACTIONS(5528), + [anon_sym_LT] = ACTIONS(5530), + [anon_sym_GT] = ACTIONS(5530), + [anon_sym_GT_GT] = ACTIONS(5528), + [anon_sym_AMP_GT] = ACTIONS(5530), + [anon_sym_AMP_GT_GT] = ACTIONS(5528), + [anon_sym_LT_AMP] = ACTIONS(5528), + [anon_sym_GT_AMP] = ACTIONS(5528), + [anon_sym_LT_LT] = ACTIONS(5530), + [anon_sym_LT_LT_DASH] = ACTIONS(5528), + [anon_sym_LT_LT_LT] = ACTIONS(5528), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5530), + }, + [3179] = { + [sym__simple_heredoc_body] = ACTIONS(5532), + [sym__heredoc_body_beginning] = ACTIONS(5532), + [sym_file_descriptor] = ACTIONS(5532), + [sym__concat] = ACTIONS(5532), + [anon_sym_esac] = ACTIONS(5532), + [anon_sym_PIPE] = ACTIONS(5534), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [anon_sym_LT] = ACTIONS(5534), + [anon_sym_GT] = ACTIONS(5534), + [anon_sym_GT_GT] = ACTIONS(5532), + [anon_sym_AMP_GT] = ACTIONS(5534), + [anon_sym_AMP_GT_GT] = ACTIONS(5532), + [anon_sym_LT_AMP] = ACTIONS(5532), + [anon_sym_GT_AMP] = ACTIONS(5532), + [anon_sym_LT_LT] = ACTIONS(5534), + [anon_sym_LT_LT_DASH] = ACTIONS(5532), + [anon_sym_LT_LT_LT] = ACTIONS(5532), + [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5534), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5534), }, }; @@ -72400,2992 +85132,3456 @@ static TSParseActionEntry ts_parse_actions[] = { [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(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(), + [163] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), + [165] = {.count = 1, .reusable = true}, SHIFT(96), + [167] = {.count = 1, .reusable = true}, SHIFT(97), + [169] = {.count = 1, .reusable = false}, SHIFT(98), + [171] = {.count = 1, .reusable = true}, SHIFT(99), + [173] = {.count = 1, .reusable = true}, SHIFT(100), + [175] = {.count = 1, .reusable = true}, SHIFT(101), + [177] = {.count = 1, .reusable = true}, SHIFT(102), + [179] = {.count = 1, .reusable = true}, SHIFT(103), [181] = {.count = 1, .reusable = false}, SHIFT(104), - [183] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), + [183] = {.count = 1, .reusable = false}, SHIFT(99), [185] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), - [187] = {.count = 1, .reusable = false}, SHIFT(107), - [189] = {.count = 1, .reusable = false}, SHIFT(108), - [191] = {.count = 1, .reusable = false}, SHIFT(109), - [193] = {.count = 1, .reusable = false}, SHIFT(110), - [195] = {.count = 1, .reusable = false}, SHIFT(111), - [197] = {.count = 1, .reusable = false}, SHIFT(112), - [199] = {.count = 1, .reusable = false}, SHIFT(113), - [201] = {.count = 1, .reusable = false}, SHIFT(114), - [203] = {.count = 1, .reusable = false}, SHIFT(115), - [205] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), - [207] = {.count = 1, .reusable = true}, SHIFT(117), - [209] = {.count = 1, .reusable = true}, SHIFT(118), - [211] = {.count = 1, .reusable = false}, SHIFT(119), - [213] = {.count = 1, .reusable = true}, SHIFT(120), - [215] = {.count = 1, .reusable = true}, SHIFT(121), - [217] = {.count = 1, .reusable = true}, SHIFT(122), - [219] = {.count = 1, .reusable = true}, SHIFT(123), - [221] = {.count = 1, .reusable = true}, SHIFT(124), - [223] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [225] = {.count = 1, .reusable = true}, SHIFT(126), - [227] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [229] = {.count = 1, .reusable = false}, SHIFT(128), - [231] = {.count = 1, .reusable = false}, SHIFT(129), - [233] = {.count = 1, .reusable = true}, SHIFT(130), - [235] = {.count = 1, .reusable = false}, SHIFT(131), - [237] = {.count = 1, .reusable = false}, SHIFT(132), - [239] = {.count = 1, .reusable = false}, SHIFT(133), - [241] = {.count = 1, .reusable = true}, SHIFT(135), - [243] = {.count = 1, .reusable = true}, SHIFT(136), - [245] = {.count = 1, .reusable = false}, SHIFT(137), - [247] = {.count = 1, .reusable = false}, SHIFT(135), - [249] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), - [251] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), - [253] = {.count = 1, .reusable = true}, SHIFT(138), - [255] = {.count = 1, .reusable = true}, SHIFT(139), - [257] = {.count = 1, .reusable = true}, SHIFT(140), - [259] = {.count = 1, .reusable = false}, SHIFT(141), - [261] = {.count = 1, .reusable = false}, SHIFT(140), - [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), + [187] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), + [189] = {.count = 1, .reusable = true}, SHIFT(107), + [191] = {.count = 1, .reusable = true}, SHIFT(108), + [193] = {.count = 1, .reusable = false}, SHIFT(109), + [195] = {.count = 1, .reusable = true}, SHIFT(110), + [197] = {.count = 1, .reusable = true}, SHIFT(111), + [199] = {.count = 1, .reusable = true}, SHIFT(112), + [201] = {.count = 1, .reusable = true}, SHIFT(113), + [203] = {.count = 1, .reusable = true}, SHIFT(114), + [205] = {.count = 1, .reusable = false}, SHIFT(115), + [207] = {.count = 1, .reusable = false}, SHIFT(110), + [209] = {.count = 1, .reusable = true}, SHIFT(117), + [211] = {.count = 1, .reusable = true}, SHIFT(118), + [213] = {.count = 1, .reusable = false}, SHIFT(119), + [215] = {.count = 1, .reusable = true}, SHIFT(120), + [217] = {.count = 1, .reusable = true}, SHIFT(121), + [219] = {.count = 1, .reusable = true}, SHIFT(122), + [221] = {.count = 1, .reusable = true}, SHIFT(123), + [223] = {.count = 1, .reusable = true}, SHIFT(124), + [225] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [227] = {.count = 1, .reusable = true}, SHIFT(126), + [229] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [231] = {.count = 1, .reusable = false}, SHIFT(128), + [233] = {.count = 1, .reusable = false}, SHIFT(129), + [235] = {.count = 1, .reusable = true}, SHIFT(130), + [237] = {.count = 1, .reusable = false}, SHIFT(131), + [239] = {.count = 1, .reusable = false}, SHIFT(132), + [241] = {.count = 1, .reusable = false}, SHIFT(133), + [243] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [245] = {.count = 1, .reusable = true}, SHIFT(135), + [247] = {.count = 1, .reusable = true}, SHIFT(136), + [249] = {.count = 1, .reusable = false}, SHIFT(137), + [251] = {.count = 1, .reusable = false}, SHIFT(135), + [253] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), + [255] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), + [257] = {.count = 1, .reusable = true}, SHIFT(138), + [259] = {.count = 1, .reusable = true}, SHIFT(139), + [261] = {.count = 1, .reusable = true}, SHIFT(140), + [263] = {.count = 1, .reusable = false}, SHIFT(141), + [265] = {.count = 1, .reusable = false}, SHIFT(140), + [267] = {.count = 1, .reusable = false}, SHIFT(146), + [269] = {.count = 1, .reusable = false}, SHIFT(147), + [271] = {.count = 1, .reusable = false}, SHIFT(148), + [273] = {.count = 1, .reusable = false}, SHIFT(149), + [275] = {.count = 1, .reusable = true}, SHIFT(150), + [277] = {.count = 1, .reusable = false}, SHIFT(151), + [279] = {.count = 1, .reusable = false}, SHIFT(152), + [281] = {.count = 1, .reusable = false}, SHIFT(153), + [283] = {.count = 1, .reusable = true}, SHIFT(162), + [285] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [287] = {.count = 1, .reusable = false}, SHIFT(163), [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(229), - [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 = false}, SHIFT(291), - [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(318), - [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(343), - [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(366), - [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(389), - [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(410), - [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 = true}, SHIFT(424), - [739] = {.count = 1, .reusable = false}, SHIFT(425), - [741] = {.count = 1, .reusable = false}, SHIFT(424), - [743] = {.count = 1, .reusable = true}, SHIFT(427), - [745] = {.count = 1, .reusable = false}, SHIFT(437), - [747] = {.count = 1, .reusable = false}, SHIFT(428), - [749] = {.count = 1, .reusable = true}, SHIFT(429), - [751] = {.count = 1, .reusable = false}, SHIFT(430), - [753] = {.count = 1, .reusable = true}, SHIFT(431), - [755] = {.count = 1, .reusable = true}, SHIFT(437), - [757] = {.count = 1, .reusable = true}, SHIFT(432), - [759] = {.count = 1, .reusable = true}, SHIFT(433), - [761] = {.count = 1, .reusable = true}, SHIFT(434), - [763] = {.count = 1, .reusable = true}, SHIFT(435), - [765] = {.count = 1, .reusable = true}, SHIFT(436), - [767] = {.count = 1, .reusable = false}, SHIFT(431), - [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(521), - [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(547), - [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 = true}, SHIFT(588), - [1119] = {.count = 1, .reusable = false}, SHIFT(589), - [1121] = {.count = 1, .reusable = false}, SHIFT(588), - [1123] = {.count = 1, .reusable = true}, SHIFT(591), - [1125] = {.count = 1, .reusable = false}, SHIFT(593), - [1127] = {.count = 1, .reusable = true}, SHIFT(593), - [1129] = {.count = 1, .reusable = true}, SHIFT(592), - [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 = true}, SHIFT(662), - [1245] = {.count = 1, .reusable = false}, SHIFT(663), - [1247] = {.count = 1, .reusable = false}, SHIFT(662), - [1249] = {.count = 1, .reusable = true}, SHIFT(665), - [1251] = {.count = 1, .reusable = false}, SHIFT(667), - [1253] = {.count = 1, .reusable = true}, SHIFT(667), - [1255] = {.count = 1, .reusable = true}, SHIFT(666), - [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), + [291] = {.count = 1, .reusable = true}, SHIFT(163), + [293] = {.count = 1, .reusable = true}, SHIFT(165), + [295] = {.count = 1, .reusable = false}, SHIFT(164), + [297] = {.count = 1, .reusable = true}, SHIFT(166), + [299] = {.count = 1, .reusable = true}, SHIFT(167), + [301] = {.count = 1, .reusable = true}, SHIFT(168), + [303] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), + [305] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), + [307] = {.count = 1, .reusable = false}, SHIFT(169), + [309] = {.count = 1, .reusable = false}, SHIFT(170), + [311] = {.count = 1, .reusable = true}, SHIFT(170), + [313] = {.count = 1, .reusable = false}, SHIFT(171), + [315] = {.count = 1, .reusable = true}, SHIFT(171), + [317] = {.count = 1, .reusable = true}, SHIFT(172), + [319] = {.count = 1, .reusable = true}, SHIFT(173), + [321] = {.count = 1, .reusable = true}, SHIFT(174), + [323] = {.count = 1, .reusable = false}, SHIFT(174), + [325] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), + [327] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), + [329] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), + [331] = {.count = 1, .reusable = true}, SHIFT(16), + [333] = {.count = 1, .reusable = true}, SHIFT(181), + [335] = {.count = 1, .reusable = true}, SHIFT(182), + [337] = {.count = 1, .reusable = true}, SHIFT(184), + [339] = {.count = 1, .reusable = true}, SHIFT(185), + [341] = {.count = 1, .reusable = true}, SHIFT(187), + [343] = {.count = 1, .reusable = true}, SHIFT(188), + [345] = {.count = 1, .reusable = true}, SHIFT(189), + [347] = {.count = 1, .reusable = true}, SHIFT(190), + [349] = {.count = 1, .reusable = false}, SHIFT(191), + [351] = {.count = 1, .reusable = true}, SHIFT(192), + [353] = {.count = 1, .reusable = true}, SHIFT(193), + [355] = {.count = 1, .reusable = true}, SHIFT(194), + [357] = {.count = 1, .reusable = true}, SHIFT(195), + [359] = {.count = 1, .reusable = true}, SHIFT(196), + [361] = {.count = 1, .reusable = true}, SHIFT(197), + [363] = {.count = 1, .reusable = true}, SHIFT(198), + [365] = {.count = 1, .reusable = false}, SHIFT(199), + [367] = {.count = 1, .reusable = true}, SHIFT(200), + [369] = {.count = 1, .reusable = true}, SHIFT(201), + [371] = {.count = 1, .reusable = false}, SHIFT(202), + [373] = {.count = 1, .reusable = true}, SHIFT(203), + [375] = {.count = 1, .reusable = true}, SHIFT(204), + [377] = {.count = 1, .reusable = true}, SHIFT(205), + [379] = {.count = 1, .reusable = true}, SHIFT(206), + [381] = {.count = 1, .reusable = true}, SHIFT(207), + [383] = {.count = 1, .reusable = false}, SHIFT(203), + [385] = {.count = 1, .reusable = true}, SHIFT(199), + [387] = {.count = 1, .reusable = false}, SHIFT(197), + [389] = {.count = 1, .reusable = true}, SHIFT(209), + [391] = {.count = 1, .reusable = true}, SHIFT(210), + [393] = {.count = 1, .reusable = false}, SHIFT(210), + [395] = {.count = 1, .reusable = true}, SHIFT(211), + [397] = {.count = 1, .reusable = true}, SHIFT(213), + [399] = {.count = 1, .reusable = false}, SHIFT(213), + [401] = {.count = 1, .reusable = true}, SHIFT(214), + [403] = {.count = 1, .reusable = true}, SHIFT(215), + [405] = {.count = 1, .reusable = true}, SHIFT(216), + [407] = {.count = 1, .reusable = true}, SHIFT(217), + [409] = {.count = 1, .reusable = false}, SHIFT(217), + [411] = {.count = 1, .reusable = false}, SHIFT(219), + [413] = {.count = 1, .reusable = false}, SHIFT(220), + [415] = {.count = 1, .reusable = true}, SHIFT(222), + [417] = {.count = 1, .reusable = true}, SHIFT(223), + [419] = {.count = 1, .reusable = false}, SHIFT(224), + [421] = {.count = 1, .reusable = false}, SHIFT(222), + [423] = {.count = 1, .reusable = true}, SHIFT(225), + [425] = {.count = 1, .reusable = true}, SHIFT(226), + [427] = {.count = 1, .reusable = false}, SHIFT(226), + [429] = {.count = 1, .reusable = true}, SHIFT(227), + [431] = {.count = 1, .reusable = true}, SHIFT(228), + [433] = {.count = 1, .reusable = true}, SHIFT(229), + [435] = {.count = 1, .reusable = false}, SHIFT(230), + [437] = {.count = 1, .reusable = false}, SHIFT(229), + [439] = {.count = 1, .reusable = true}, SHIFT(241), + [441] = {.count = 1, .reusable = true}, SHIFT(242), + [443] = {.count = 1, .reusable = true}, SHIFT(244), + [445] = {.count = 1, .reusable = true}, SHIFT(246), + [447] = {.count = 1, .reusable = true}, SHIFT(249), + [449] = {.count = 1, .reusable = true}, SHIFT(250), + [451] = {.count = 1, .reusable = true}, SHIFT(251), + [453] = {.count = 1, .reusable = false}, SHIFT(251), + [455] = {.count = 1, .reusable = true}, SHIFT(254), + [457] = {.count = 1, .reusable = true}, SHIFT(255), + [459] = {.count = 1, .reusable = false}, SHIFT(255), + [461] = {.count = 1, .reusable = true}, SHIFT(258), + [463] = {.count = 1, .reusable = false}, SHIFT(259), + [465] = {.count = 1, .reusable = true}, SHIFT(260), + [467] = {.count = 1, .reusable = true}, SHIFT(261), + [469] = {.count = 1, .reusable = true}, SHIFT(259), + [471] = {.count = 1, .reusable = true}, SHIFT(262), + [473] = {.count = 1, .reusable = false}, SHIFT(261), + [475] = {.count = 1, .reusable = true}, SHIFT(263), + [477] = {.count = 1, .reusable = false}, SHIFT(264), + [479] = {.count = 1, .reusable = false}, SHIFT(265), + [481] = {.count = 1, .reusable = true}, SHIFT(265), + [483] = {.count = 1, .reusable = true}, SHIFT(266), + [485] = {.count = 1, .reusable = true}, SHIFT(267), + [487] = {.count = 1, .reusable = true}, SHIFT(268), + [489] = {.count = 1, .reusable = false}, SHIFT(268), + [491] = {.count = 1, .reusable = true}, SHIFT(61), + [493] = {.count = 1, .reusable = true}, SHIFT(275), + [495] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), + [497] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), + [499] = {.count = 1, .reusable = false}, SHIFT(276), + [501] = {.count = 1, .reusable = true}, SHIFT(277), + [503] = {.count = 1, .reusable = true}, SHIFT(278), + [505] = {.count = 1, .reusable = false}, SHIFT(278), + [507] = {.count = 1, .reusable = true}, SHIFT(276), + [509] = {.count = 1, .reusable = true}, SHIFT(281), + [511] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [513] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [515] = {.count = 1, .reusable = false}, SHIFT(283), + [517] = {.count = 1, .reusable = false}, SHIFT(284), + [519] = {.count = 1, .reusable = true}, SHIFT(286), + [521] = {.count = 1, .reusable = true}, SHIFT(287), + [523] = {.count = 1, .reusable = false}, SHIFT(288), + [525] = {.count = 1, .reusable = false}, SHIFT(286), + [527] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [529] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [531] = {.count = 1, .reusable = true}, SHIFT(289), + [533] = {.count = 1, .reusable = true}, SHIFT(290), + [535] = {.count = 1, .reusable = true}, SHIFT(291), + [537] = {.count = 1, .reusable = false}, SHIFT(292), + [539] = {.count = 1, .reusable = false}, SHIFT(291), + [541] = {.count = 1, .reusable = true}, SHIFT(303), + [543] = {.count = 1, .reusable = true}, SHIFT(304), + [545] = {.count = 1, .reusable = true}, SHIFT(305), + [547] = {.count = 1, .reusable = false}, SHIFT(303), + [549] = {.count = 1, .reusable = true}, SHIFT(308), + [551] = {.count = 1, .reusable = false}, SHIFT(310), + [553] = {.count = 1, .reusable = false}, SHIFT(311), + [555] = {.count = 1, .reusable = true}, SHIFT(313), + [557] = {.count = 1, .reusable = true}, SHIFT(314), + [559] = {.count = 1, .reusable = false}, SHIFT(315), + [561] = {.count = 1, .reusable = false}, SHIFT(313), + [563] = {.count = 1, .reusable = true}, SHIFT(316), + [565] = {.count = 1, .reusable = true}, SHIFT(317), + [567] = {.count = 1, .reusable = true}, SHIFT(318), + [569] = {.count = 1, .reusable = false}, SHIFT(319), + [571] = {.count = 1, .reusable = false}, SHIFT(318), + [573] = {.count = 1, .reusable = true}, SHIFT(330), + [575] = {.count = 1, .reusable = true}, SHIFT(331), + [577] = {.count = 1, .reusable = false}, SHIFT(330), + [579] = {.count = 1, .reusable = true}, SHIFT(332), + [581] = {.count = 1, .reusable = true}, SHIFT(333), + [583] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [585] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [587] = {.count = 1, .reusable = false}, SHIFT(335), + [589] = {.count = 1, .reusable = false}, SHIFT(336), + [591] = {.count = 1, .reusable = true}, SHIFT(338), + [593] = {.count = 1, .reusable = true}, SHIFT(339), + [595] = {.count = 1, .reusable = false}, SHIFT(340), + [597] = {.count = 1, .reusable = false}, SHIFT(338), + [599] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [601] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [603] = {.count = 1, .reusable = true}, SHIFT(341), + [605] = {.count = 1, .reusable = true}, SHIFT(342), + [607] = {.count = 1, .reusable = true}, SHIFT(343), + [609] = {.count = 1, .reusable = false}, SHIFT(344), + [611] = {.count = 1, .reusable = false}, SHIFT(343), + [613] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [615] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [617] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), + [619] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [621] = {.count = 1, .reusable = true}, SHIFT(356), + [623] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [625] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [627] = {.count = 1, .reusable = false}, SHIFT(358), + [629] = {.count = 1, .reusable = false}, SHIFT(359), + [631] = {.count = 1, .reusable = true}, SHIFT(361), + [633] = {.count = 1, .reusable = true}, SHIFT(362), + [635] = {.count = 1, .reusable = false}, SHIFT(363), + [637] = {.count = 1, .reusable = false}, SHIFT(361), + [639] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [641] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [643] = {.count = 1, .reusable = true}, SHIFT(364), + [645] = {.count = 1, .reusable = true}, SHIFT(365), + [647] = {.count = 1, .reusable = true}, SHIFT(366), + [649] = {.count = 1, .reusable = false}, SHIFT(367), + [651] = {.count = 1, .reusable = false}, SHIFT(366), + [653] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [655] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [657] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), + [659] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [661] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [663] = {.count = 1, .reusable = true}, SHIFT(379), + [665] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [667] = {.count = 1, .reusable = false}, SHIFT(381), + [669] = {.count = 1, .reusable = false}, SHIFT(382), + [671] = {.count = 1, .reusable = true}, SHIFT(384), + [673] = {.count = 1, .reusable = true}, SHIFT(385), + [675] = {.count = 1, .reusable = false}, SHIFT(386), + [677] = {.count = 1, .reusable = false}, SHIFT(384), + [679] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [681] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), + [683] = {.count = 1, .reusable = true}, SHIFT(387), + [685] = {.count = 1, .reusable = true}, SHIFT(388), + [687] = {.count = 1, .reusable = true}, SHIFT(389), + [689] = {.count = 1, .reusable = false}, SHIFT(390), + [691] = {.count = 1, .reusable = false}, SHIFT(389), + [693] = {.count = 1, .reusable = true}, SHIFT(401), + [695] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [697] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [699] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [701] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), + [703] = {.count = 1, .reusable = false}, SHIFT(403), + [705] = {.count = 1, .reusable = false}, SHIFT(404), + [707] = {.count = 1, .reusable = false}, SHIFT(405), + [709] = {.count = 1, .reusable = true}, SHIFT(404), + [711] = {.count = 1, .reusable = false}, SHIFT(406), + [713] = {.count = 1, .reusable = true}, SHIFT(407), + [715] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [717] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), + [719] = {.count = 1, .reusable = true}, SHIFT(408), + [721] = {.count = 1, .reusable = true}, SHIFT(409), + [723] = {.count = 1, .reusable = true}, SHIFT(410), + [725] = {.count = 1, .reusable = false}, SHIFT(411), + [727] = {.count = 1, .reusable = false}, SHIFT(410), + [729] = {.count = 1, .reusable = false}, SHIFT(419), + [731] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [733] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [735] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [737] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [739] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [741] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [743] = {.count = 1, .reusable = true}, SHIFT(421), + [745] = {.count = 1, .reusable = true}, SHIFT(422), + [747] = {.count = 1, .reusable = true}, SHIFT(423), + [749] = {.count = 1, .reusable = true}, SHIFT(424), + [751] = {.count = 1, .reusable = false}, SHIFT(425), + [753] = {.count = 1, .reusable = false}, SHIFT(424), + [755] = {.count = 1, .reusable = true}, SHIFT(427), + [757] = {.count = 1, .reusable = false}, SHIFT(437), + [759] = {.count = 1, .reusable = false}, SHIFT(428), + [761] = {.count = 1, .reusable = true}, SHIFT(429), + [763] = {.count = 1, .reusable = false}, SHIFT(430), + [765] = {.count = 1, .reusable = true}, SHIFT(431), + [767] = {.count = 1, .reusable = true}, SHIFT(437), + [769] = {.count = 1, .reusable = true}, SHIFT(432), + [771] = {.count = 1, .reusable = true}, SHIFT(433), + [773] = {.count = 1, .reusable = true}, SHIFT(434), + [775] = {.count = 1, .reusable = true}, SHIFT(435), + [777] = {.count = 1, .reusable = true}, SHIFT(436), + [779] = {.count = 1, .reusable = false}, SHIFT(431), + [781] = {.count = 1, .reusable = true}, SHIFT(438), + [783] = {.count = 1, .reusable = false}, SHIFT(440), + [785] = {.count = 1, .reusable = true}, SHIFT(440), + [787] = {.count = 1, .reusable = true}, SHIFT(439), + [789] = {.count = 1, .reusable = true}, SHIFT(441), + [791] = {.count = 1, .reusable = false}, SHIFT(443), + [793] = {.count = 1, .reusable = true}, SHIFT(443), + [795] = {.count = 1, .reusable = true}, SHIFT(442), + [797] = {.count = 1, .reusable = true}, SHIFT(444), + [799] = {.count = 1, .reusable = true}, SHIFT(445), + [801] = {.count = 1, .reusable = false}, SHIFT(445), + [803] = {.count = 1, .reusable = true}, SHIFT(449), + [805] = {.count = 1, .reusable = true}, SHIFT(454), + [807] = {.count = 1, .reusable = false}, SHIFT(455), + [809] = {.count = 1, .reusable = true}, SHIFT(456), + [811] = {.count = 1, .reusable = true}, SHIFT(455), + [813] = {.count = 1, .reusable = true}, SHIFT(457), + [815] = {.count = 1, .reusable = false}, SHIFT(456), + [817] = {.count = 1, .reusable = true}, SHIFT(458), + [819] = {.count = 1, .reusable = false}, SHIFT(459), + [821] = {.count = 1, .reusable = true}, SHIFT(459), + [823] = {.count = 1, .reusable = true}, SHIFT(460), + [825] = {.count = 1, .reusable = true}, SHIFT(466), + [827] = {.count = 1, .reusable = true}, SHIFT(467), + [829] = {.count = 1, .reusable = false}, SHIFT(467), + [831] = {.count = 1, .reusable = true}, SHIFT(470), + [833] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [835] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), + [837] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [839] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [841] = {.count = 1, .reusable = true}, SHIFT(478), + [843] = {.count = 1, .reusable = true}, SHIFT(475), + [845] = {.count = 1, .reusable = false}, SHIFT(476), + [847] = {.count = 1, .reusable = true}, SHIFT(477), + [849] = {.count = 1, .reusable = false}, SHIFT(479), + [851] = {.count = 1, .reusable = true}, SHIFT(479), + [853] = {.count = 1, .reusable = false}, SHIFT(480), + [855] = {.count = 1, .reusable = false}, SHIFT(17), + [857] = {.count = 1, .reusable = false}, SHIFT(481), + [859] = {.count = 1, .reusable = false}, SHIFT(20), + [861] = {.count = 1, .reusable = false}, SHIFT(21), + [863] = {.count = 1, .reusable = false}, SHIFT(22), + [865] = {.count = 1, .reusable = false}, SHIFT(23), + [867] = {.count = 1, .reusable = false}, SHIFT(482), + [869] = {.count = 1, .reusable = true}, SHIFT(483), + [871] = {.count = 1, .reusable = true}, SHIFT(484), + [873] = {.count = 1, .reusable = true}, SHIFT(486), + [875] = {.count = 1, .reusable = true}, SHIFT(487), + [877] = {.count = 1, .reusable = true}, SHIFT(488), + [879] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [881] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [883] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [885] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [887] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [889] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [891] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [894] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [897] = {.count = 1, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), + [899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [902] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [905] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [908] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [911] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [914] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [917] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [920] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [923] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [926] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [929] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [932] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [935] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [938] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [941] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [944] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [947] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [950] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [953] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [956] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), + [959] = {.count = 2, .reusable = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), + [962] = {.count = 2, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(24), + [965] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [968] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(70), + [971] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), + [974] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), + [977] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [979] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [981] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [983] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [985] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [987] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [989] = {.count = 1, .reusable = true}, SHIFT(495), + [991] = {.count = 1, .reusable = true}, SHIFT(496), + [993] = {.count = 1, .reusable = true}, SHIFT(498), + [995] = {.count = 1, .reusable = true}, SHIFT(499), + [997] = {.count = 1, .reusable = true}, SHIFT(500), + [999] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [1001] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), + [1003] = {.count = 1, .reusable = true}, SHIFT(501), + [1005] = {.count = 1, .reusable = true}, SHIFT(502), + [1007] = {.count = 1, .reusable = true}, SHIFT(503), + [1009] = {.count = 1, .reusable = false}, SHIFT(504), + [1011] = {.count = 1, .reusable = true}, SHIFT(505), + [1013] = {.count = 1, .reusable = true}, SHIFT(506), + [1015] = {.count = 1, .reusable = true}, SHIFT(507), + [1017] = {.count = 1, .reusable = true}, SHIFT(508), + [1019] = {.count = 1, .reusable = true}, SHIFT(509), + [1021] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), + [1023] = {.count = 1, .reusable = true}, SHIFT(511), + [1025] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 6), + [1027] = {.count = 1, .reusable = false}, SHIFT(513), + [1029] = {.count = 1, .reusable = false}, SHIFT(514), + [1031] = {.count = 1, .reusable = true}, SHIFT(516), + [1033] = {.count = 1, .reusable = true}, SHIFT(517), + [1035] = {.count = 1, .reusable = false}, SHIFT(518), + [1037] = {.count = 1, .reusable = false}, SHIFT(516), + [1039] = {.count = 1, .reusable = true}, SHIFT(519), + [1041] = {.count = 1, .reusable = true}, SHIFT(520), + [1043] = {.count = 1, .reusable = true}, SHIFT(521), + [1045] = {.count = 1, .reusable = false}, SHIFT(522), + [1047] = {.count = 1, .reusable = false}, SHIFT(521), + [1049] = {.count = 1, .reusable = true}, SHIFT(533), + [1051] = {.count = 1, .reusable = false}, SHIFT(533), + [1053] = {.count = 1, .reusable = true}, SHIFT(537), + [1055] = {.count = 1, .reusable = false}, SHIFT(539), + [1057] = {.count = 1, .reusable = false}, SHIFT(540), + [1059] = {.count = 1, .reusable = true}, SHIFT(542), + [1061] = {.count = 1, .reusable = true}, SHIFT(543), + [1063] = {.count = 1, .reusable = false}, SHIFT(544), + [1065] = {.count = 1, .reusable = false}, SHIFT(542), + [1067] = {.count = 1, .reusable = true}, SHIFT(545), + [1069] = {.count = 1, .reusable = true}, SHIFT(546), + [1071] = {.count = 1, .reusable = true}, SHIFT(547), + [1073] = {.count = 1, .reusable = false}, SHIFT(548), + [1075] = {.count = 1, .reusable = false}, SHIFT(547), + [1077] = {.count = 1, .reusable = true}, SHIFT(559), + [1079] = {.count = 1, .reusable = true}, SHIFT(560), + [1081] = {.count = 1, .reusable = true}, SHIFT(561), + [1083] = {.count = 1, .reusable = false}, SHIFT(560), + [1085] = {.count = 1, .reusable = false}, SHIFT(559), + [1087] = {.count = 1, .reusable = true}, SHIFT(562), + [1089] = {.count = 1, .reusable = true}, SHIFT(563), + [1091] = {.count = 1, .reusable = false}, SHIFT(564), + [1093] = {.count = 1, .reusable = true}, SHIFT(565), + [1095] = {.count = 1, .reusable = true}, SHIFT(566), + [1097] = {.count = 1, .reusable = true}, SHIFT(567), + [1099] = {.count = 1, .reusable = true}, SHIFT(568), + [1101] = {.count = 1, .reusable = true}, SHIFT(569), + [1103] = {.count = 1, .reusable = true}, SHIFT(571), + [1105] = {.count = 1, .reusable = false}, SHIFT(573), + [1107] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1109] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1111] = {.count = 1, .reusable = false}, SHIFT(577), + [1113] = {.count = 1, .reusable = false}, SHIFT(578), + [1115] = {.count = 1, .reusable = false}, SHIFT(579), + [1117] = {.count = 1, .reusable = true}, SHIFT(584), + [1119] = {.count = 1, .reusable = true}, SHIFT(585), + [1121] = {.count = 1, .reusable = false}, SHIFT(585), + [1123] = {.count = 1, .reusable = true}, SHIFT(586), + [1125] = {.count = 1, .reusable = false}, SHIFT(588), + [1127] = {.count = 1, .reusable = false}, SHIFT(589), + [1129] = {.count = 1, .reusable = true}, SHIFT(590), + [1131] = {.count = 1, .reusable = false}, SHIFT(590), + [1133] = {.count = 1, .reusable = true}, SHIFT(591), + [1135] = {.count = 1, .reusable = true}, SHIFT(592), + [1137] = {.count = 1, .reusable = true}, SHIFT(593), + [1139] = {.count = 1, .reusable = true}, SHIFT(594), + [1141] = {.count = 1, .reusable = false}, SHIFT(595), + [1143] = {.count = 1, .reusable = false}, SHIFT(594), + [1145] = {.count = 1, .reusable = true}, SHIFT(597), + [1147] = {.count = 1, .reusable = false}, SHIFT(599), + [1149] = {.count = 1, .reusable = true}, SHIFT(599), + [1151] = {.count = 1, .reusable = true}, SHIFT(598), + [1153] = {.count = 1, .reusable = true}, SHIFT(600), + [1155] = {.count = 1, .reusable = false}, SHIFT(602), + [1157] = {.count = 1, .reusable = true}, SHIFT(602), + [1159] = {.count = 1, .reusable = true}, SHIFT(601), + [1161] = {.count = 1, .reusable = true}, SHIFT(603), + [1163] = {.count = 1, .reusable = false}, SHIFT(605), + [1165] = {.count = 1, .reusable = true}, SHIFT(605), + [1167] = {.count = 1, .reusable = true}, SHIFT(604), + [1169] = {.count = 1, .reusable = true}, SHIFT(606), + [1171] = {.count = 1, .reusable = true}, SHIFT(607), + [1173] = {.count = 1, .reusable = false}, SHIFT(607), + [1175] = {.count = 1, .reusable = true}, SHIFT(610), + [1177] = {.count = 1, .reusable = false}, SHIFT(610), + [1179] = {.count = 1, .reusable = true}, SHIFT(613), + [1181] = {.count = 1, .reusable = true}, SHIFT(614), + [1183] = {.count = 1, .reusable = false}, SHIFT(614), + [1185] = {.count = 1, .reusable = true}, SHIFT(617), + [1187] = {.count = 1, .reusable = true}, SHIFT(618), + [1189] = {.count = 1, .reusable = true}, SHIFT(622), + [1191] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1193] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1195] = {.count = 1, .reusable = false}, SHIFT(623), + [1197] = {.count = 1, .reusable = true}, SHIFT(623), + [1199] = {.count = 1, .reusable = true}, SHIFT(625), + [1201] = {.count = 1, .reusable = true}, SHIFT(626), + [1203] = {.count = 1, .reusable = true}, SHIFT(628), + [1205] = {.count = 1, .reusable = true}, SHIFT(630), + [1207] = {.count = 1, .reusable = true}, SHIFT(631), + [1209] = {.count = 1, .reusable = true}, SHIFT(637), + [1211] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [1213] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [1215] = {.count = 1, .reusable = true}, SHIFT(638), + [1217] = {.count = 1, .reusable = false}, SHIFT(641), + [1219] = {.count = 1, .reusable = true}, SHIFT(641), + [1221] = {.count = 1, .reusable = false}, SHIFT(642), + [1223] = {.count = 1, .reusable = false}, SHIFT(643), + [1225] = {.count = 1, .reusable = true}, SHIFT(644), + [1227] = {.count = 1, .reusable = true}, SHIFT(645), + [1229] = {.count = 1, .reusable = true}, SHIFT(646), + [1231] = {.count = 1, .reusable = true}, SHIFT(647), + [1233] = {.count = 1, .reusable = true}, SHIFT(651), + [1235] = {.count = 1, .reusable = false}, SHIFT(651), + [1237] = {.count = 1, .reusable = true}, SHIFT(653), + [1239] = {.count = 1, .reusable = true}, SHIFT(654), + [1241] = {.count = 1, .reusable = true}, SHIFT(655), + [1243] = {.count = 1, .reusable = true}, SHIFT(656), + [1245] = {.count = 1, .reusable = true}, SHIFT(659), + [1247] = {.count = 1, .reusable = true}, SHIFT(660), + [1249] = {.count = 1, .reusable = true}, SHIFT(661), + [1251] = {.count = 1, .reusable = false}, SHIFT(660), + [1253] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [1255] = {.count = 1, .reusable = true}, SHIFT(662), + [1257] = {.count = 1, .reusable = false}, SHIFT(664), + [1259] = {.count = 1, .reusable = false}, SHIFT(665), + [1261] = {.count = 1, .reusable = true}, SHIFT(666), + [1263] = {.count = 1, .reusable = true}, SHIFT(667), + [1265] = {.count = 1, .reusable = true}, SHIFT(668), + [1267] = {.count = 1, .reusable = false}, SHIFT(669), + [1269] = {.count = 1, .reusable = false}, SHIFT(668), + [1271] = {.count = 1, .reusable = true}, SHIFT(671), + [1273] = {.count = 1, .reusable = false}, SHIFT(673), + [1275] = {.count = 1, .reusable = true}, SHIFT(673), + [1277] = {.count = 1, .reusable = true}, SHIFT(672), + [1279] = {.count = 1, .reusable = true}, SHIFT(674), + [1281] = {.count = 1, .reusable = false}, SHIFT(676), + [1283] = {.count = 1, .reusable = true}, SHIFT(676), + [1285] = {.count = 1, .reusable = true}, SHIFT(675), + [1287] = {.count = 1, .reusable = true}, SHIFT(677), + [1289] = {.count = 1, .reusable = false}, SHIFT(679), + [1291] = {.count = 1, .reusable = true}, SHIFT(679), + [1293] = {.count = 1, .reusable = true}, SHIFT(678), + [1295] = {.count = 1, .reusable = true}, SHIFT(680), + [1297] = {.count = 1, .reusable = true}, SHIFT(681), + [1299] = {.count = 1, .reusable = false}, SHIFT(681), + [1301] = {.count = 1, .reusable = true}, SHIFT(684), + [1303] = {.count = 1, .reusable = false}, SHIFT(684), + [1305] = {.count = 1, .reusable = true}, SHIFT(687), + [1307] = {.count = 1, .reusable = true}, SHIFT(688), + [1309] = {.count = 1, .reusable = false}, SHIFT(688), + [1311] = {.count = 1, .reusable = true}, SHIFT(692), + [1313] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1315] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1317] = {.count = 1, .reusable = false}, SHIFT(693), [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 = true}, SHIFT(699), - [1331] = {.count = 1, .reusable = false}, SHIFT(700), - [1333] = {.count = 1, .reusable = false}, SHIFT(699), - [1335] = {.count = 1, .reusable = true}, SHIFT(702), - [1337] = {.count = 1, .reusable = false}, SHIFT(704), - [1339] = {.count = 1, .reusable = true}, SHIFT(704), - [1341] = {.count = 1, .reusable = true}, SHIFT(703), - [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 = false}, SHIFT(731), - [1413] = {.count = 1, .reusable = true}, SHIFT(732), - [1415] = {.count = 1, .reusable = true}, SHIFT(733), - [1417] = {.count = 1, .reusable = true}, SHIFT(734), - [1419] = {.count = 1, .reusable = false}, SHIFT(735), - [1421] = {.count = 1, .reusable = false}, SHIFT(734), - [1423] = {.count = 1, .reusable = true}, SHIFT(737), - [1425] = {.count = 1, .reusable = false}, SHIFT(739), - [1427] = {.count = 1, .reusable = true}, SHIFT(739), - [1429] = {.count = 1, .reusable = true}, SHIFT(738), - [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 = true}, SHIFT(763), - [1517] = {.count = 1, .reusable = false}, SHIFT(764), - [1519] = {.count = 1, .reusable = false}, SHIFT(763), - [1521] = {.count = 1, .reusable = true}, SHIFT(766), - [1523] = {.count = 1, .reusable = false}, SHIFT(768), - [1525] = {.count = 1, .reusable = true}, SHIFT(768), - [1527] = {.count = 1, .reusable = true}, SHIFT(767), - [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 = 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 = true}, SHIFT(792), - [1604] = {.count = 1, .reusable = false}, SHIFT(793), - [1606] = {.count = 1, .reusable = false}, SHIFT(792), - [1608] = {.count = 1, .reusable = true}, SHIFT(795), - [1610] = {.count = 1, .reusable = false}, SHIFT(797), - [1612] = {.count = 1, .reusable = true}, SHIFT(797), + [1321] = {.count = 1, .reusable = false}, SHIFT(694), + [1323] = {.count = 1, .reusable = true}, SHIFT(694), + [1325] = {.count = 1, .reusable = true}, SHIFT(695), + [1327] = {.count = 1, .reusable = false}, SHIFT(73), + [1329] = {.count = 1, .reusable = false}, SHIFT(75), + [1331] = {.count = 1, .reusable = false}, SHIFT(76), + [1333] = {.count = 1, .reusable = false}, SHIFT(79), + [1335] = {.count = 1, .reusable = false}, SHIFT(80), + [1337] = {.count = 1, .reusable = false}, SHIFT(81), + [1339] = {.count = 1, .reusable = false}, SHIFT(82), + [1341] = {.count = 1, .reusable = false}, SHIFT(697), + [1343] = {.count = 1, .reusable = true}, SHIFT(698), + [1345] = {.count = 1, .reusable = true}, SHIFT(699), + [1347] = {.count = 1, .reusable = false}, SHIFT(701), + [1349] = {.count = 1, .reusable = false}, SHIFT(702), + [1351] = {.count = 1, .reusable = true}, SHIFT(703), + [1353] = {.count = 1, .reusable = true}, SHIFT(704), + [1355] = {.count = 1, .reusable = true}, SHIFT(705), + [1357] = {.count = 1, .reusable = false}, SHIFT(706), + [1359] = {.count = 1, .reusable = false}, SHIFT(705), + [1361] = {.count = 1, .reusable = true}, SHIFT(708), + [1363] = {.count = 1, .reusable = false}, SHIFT(710), + [1365] = {.count = 1, .reusable = true}, SHIFT(710), + [1367] = {.count = 1, .reusable = true}, SHIFT(709), + [1369] = {.count = 1, .reusable = true}, SHIFT(711), + [1371] = {.count = 1, .reusable = false}, SHIFT(713), + [1373] = {.count = 1, .reusable = true}, SHIFT(713), + [1375] = {.count = 1, .reusable = true}, SHIFT(712), + [1377] = {.count = 1, .reusable = true}, SHIFT(714), + [1379] = {.count = 1, .reusable = false}, SHIFT(716), + [1381] = {.count = 1, .reusable = true}, SHIFT(716), + [1383] = {.count = 1, .reusable = true}, SHIFT(715), + [1385] = {.count = 1, .reusable = true}, SHIFT(717), + [1387] = {.count = 1, .reusable = true}, SHIFT(718), + [1389] = {.count = 1, .reusable = false}, SHIFT(718), + [1391] = {.count = 1, .reusable = true}, SHIFT(721), + [1393] = {.count = 1, .reusable = false}, SHIFT(721), + [1395] = {.count = 1, .reusable = true}, SHIFT(724), + [1397] = {.count = 1, .reusable = true}, SHIFT(725), + [1399] = {.count = 1, .reusable = false}, SHIFT(725), + [1401] = {.count = 1, .reusable = false}, SHIFT(84), + [1403] = {.count = 1, .reusable = false}, SHIFT(86), + [1405] = {.count = 1, .reusable = false}, SHIFT(87), + [1407] = {.count = 1, .reusable = false}, SHIFT(90), + [1409] = {.count = 1, .reusable = false}, SHIFT(91), + [1411] = {.count = 1, .reusable = false}, SHIFT(92), + [1413] = {.count = 1, .reusable = false}, SHIFT(93), + [1415] = {.count = 1, .reusable = false}, SHIFT(729), + [1417] = {.count = 1, .reusable = true}, SHIFT(730), + [1419] = {.count = 1, .reusable = true}, SHIFT(731), + [1421] = {.count = 1, .reusable = true}, SHIFT(732), + [1423] = {.count = 1, .reusable = true}, SHIFT(733), + [1425] = {.count = 1, .reusable = true}, SHIFT(734), + [1427] = {.count = 1, .reusable = false}, SHIFT(736), + [1429] = {.count = 1, .reusable = false}, SHIFT(737), + [1431] = {.count = 1, .reusable = true}, SHIFT(738), + [1433] = {.count = 1, .reusable = true}, SHIFT(739), + [1435] = {.count = 1, .reusable = true}, SHIFT(740), + [1437] = {.count = 1, .reusable = false}, SHIFT(741), + [1439] = {.count = 1, .reusable = false}, SHIFT(740), + [1441] = {.count = 1, .reusable = true}, SHIFT(743), + [1443] = {.count = 1, .reusable = false}, SHIFT(745), + [1445] = {.count = 1, .reusable = true}, SHIFT(745), + [1447] = {.count = 1, .reusable = true}, SHIFT(744), + [1449] = {.count = 1, .reusable = true}, SHIFT(746), + [1451] = {.count = 1, .reusable = false}, SHIFT(748), + [1453] = {.count = 1, .reusable = true}, SHIFT(748), + [1455] = {.count = 1, .reusable = true}, SHIFT(747), + [1457] = {.count = 1, .reusable = true}, SHIFT(749), + [1459] = {.count = 1, .reusable = false}, SHIFT(751), + [1461] = {.count = 1, .reusable = true}, SHIFT(751), + [1463] = {.count = 1, .reusable = true}, SHIFT(750), + [1465] = {.count = 1, .reusable = true}, SHIFT(752), + [1467] = {.count = 1, .reusable = true}, SHIFT(753), + [1469] = {.count = 1, .reusable = false}, SHIFT(753), + [1471] = {.count = 1, .reusable = true}, SHIFT(756), + [1473] = {.count = 1, .reusable = false}, SHIFT(756), + [1475] = {.count = 1, .reusable = true}, SHIFT(759), + [1477] = {.count = 1, .reusable = true}, SHIFT(760), + [1479] = {.count = 1, .reusable = false}, SHIFT(760), + [1481] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), + [1484] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1486] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1488] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), + [1491] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), + [1494] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), + [1497] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), + [1500] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), + [1503] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), + [1506] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), + [1509] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), + [1512] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), + [1515] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), + [1518] = {.count = 1, .reusable = true}, SHIFT(763), + [1520] = {.count = 1, .reusable = false}, SHIFT(765), + [1522] = {.count = 1, .reusable = false}, SHIFT(766), + [1524] = {.count = 1, .reusable = true}, SHIFT(767), + [1526] = {.count = 1, .reusable = true}, SHIFT(768), + [1528] = {.count = 1, .reusable = true}, SHIFT(769), + [1530] = {.count = 1, .reusable = false}, SHIFT(770), + [1532] = {.count = 1, .reusable = false}, SHIFT(769), + [1534] = {.count = 1, .reusable = true}, SHIFT(772), + [1536] = {.count = 1, .reusable = false}, SHIFT(774), + [1538] = {.count = 1, .reusable = true}, SHIFT(774), + [1540] = {.count = 1, .reusable = true}, SHIFT(773), + [1542] = {.count = 1, .reusable = true}, SHIFT(775), + [1544] = {.count = 1, .reusable = false}, SHIFT(777), + [1546] = {.count = 1, .reusable = true}, SHIFT(777), + [1548] = {.count = 1, .reusable = true}, SHIFT(776), + [1550] = {.count = 1, .reusable = true}, SHIFT(778), + [1552] = {.count = 1, .reusable = false}, SHIFT(780), + [1554] = {.count = 1, .reusable = true}, SHIFT(780), + [1556] = {.count = 1, .reusable = true}, SHIFT(779), + [1558] = {.count = 1, .reusable = true}, SHIFT(781), + [1560] = {.count = 1, .reusable = true}, SHIFT(782), + [1562] = {.count = 1, .reusable = false}, SHIFT(782), + [1564] = {.count = 1, .reusable = true}, SHIFT(785), + [1566] = {.count = 1, .reusable = false}, SHIFT(785), + [1568] = {.count = 1, .reusable = true}, SHIFT(788), + [1570] = {.count = 1, .reusable = true}, SHIFT(789), + [1572] = {.count = 1, .reusable = false}, SHIFT(789), + [1574] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1576] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1578] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), + [1581] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), + [1584] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), + [1587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [1590] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), + [1593] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), + [1596] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), + [1599] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), + [1602] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), + [1605] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [1608] = {.count = 1, .reusable = true}, SHIFT(792), + [1610] = {.count = 1, .reusable = false}, SHIFT(794), + [1612] = {.count = 1, .reusable = false}, SHIFT(795), [1614] = {.count = 1, .reusable = true}, SHIFT(796), - [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), + [1616] = {.count = 1, .reusable = true}, SHIFT(797), + [1618] = {.count = 1, .reusable = true}, SHIFT(798), + [1620] = {.count = 1, .reusable = false}, SHIFT(799), + [1622] = {.count = 1, .reusable = false}, SHIFT(798), [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 = true}, SHIFT(818), - [1671] = {.count = 1, .reusable = false}, SHIFT(819), - [1673] = {.count = 1, .reusable = false}, SHIFT(818), + [1632] = {.count = 1, .reusable = true}, SHIFT(804), + [1634] = {.count = 1, .reusable = false}, SHIFT(806), + [1636] = {.count = 1, .reusable = true}, SHIFT(806), + [1638] = {.count = 1, .reusable = true}, SHIFT(805), + [1640] = {.count = 1, .reusable = true}, SHIFT(807), + [1642] = {.count = 1, .reusable = false}, SHIFT(809), + [1644] = {.count = 1, .reusable = true}, SHIFT(809), + [1646] = {.count = 1, .reusable = true}, SHIFT(808), + [1648] = {.count = 1, .reusable = true}, SHIFT(810), + [1650] = {.count = 1, .reusable = true}, SHIFT(811), + [1652] = {.count = 1, .reusable = false}, SHIFT(811), + [1654] = {.count = 1, .reusable = true}, SHIFT(814), + [1656] = {.count = 1, .reusable = false}, SHIFT(814), + [1658] = {.count = 1, .reusable = true}, SHIFT(817), + [1660] = {.count = 1, .reusable = true}, SHIFT(818), + [1662] = {.count = 1, .reusable = false}, SHIFT(818), + [1664] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1666] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1668] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(126), + [1671] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1673] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), [1675] = {.count = 1, .reusable = true}, SHIFT(821), - [1677] = {.count = 1, .reusable = false}, SHIFT(823), - [1679] = {.count = 1, .reusable = true}, SHIFT(823), + [1677] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1679] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), [1681] = {.count = 1, .reusable = true}, SHIFT(822), - [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), + [1683] = {.count = 1, .reusable = true}, SHIFT(823), + [1685] = {.count = 1, .reusable = true}, SHIFT(824), + [1687] = {.count = 1, .reusable = false}, SHIFT(825), + [1689] = {.count = 1, .reusable = false}, SHIFT(824), [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}, SHIFT(852), - [1750] = {.count = 1, .reusable = true}, SHIFT(853), - [1752] = {.count = 1, .reusable = false}, SHIFT(855), - [1754] = {.count = 1, .reusable = true}, SHIFT(855), - [1756] = {.count = 1, .reusable = true}, SHIFT(854), - [1758] = {.count = 1, .reusable = true}, SHIFT(856), - [1760] = {.count = 1, .reusable = false}, SHIFT(858), - [1762] = {.count = 1, .reusable = true}, SHIFT(858), - [1764] = {.count = 1, .reusable = true}, SHIFT(857), - [1766] = {.count = 1, .reusable = false}, SHIFT(860), - [1768] = {.count = 1, .reusable = true}, SHIFT(860), - [1770] = {.count = 1, .reusable = true}, SHIFT(859), - [1772] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1774] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1776] = {.count = 1, .reusable = true}, SHIFT(861), - [1778] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1780] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1782] = {.count = 1, .reusable = false}, SHIFT(863), - [1784] = {.count = 1, .reusable = false}, SHIFT(864), - [1786] = {.count = 1, .reusable = true}, SHIFT(866), - [1788] = {.count = 1, .reusable = true}, SHIFT(867), - [1790] = {.count = 1, .reusable = false}, SHIFT(868), - [1792] = {.count = 1, .reusable = false}, SHIFT(866), - [1794] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1796] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1798] = {.count = 1, .reusable = true}, SHIFT(869), - [1800] = {.count = 1, .reusable = true}, SHIFT(870), - [1802] = {.count = 1, .reusable = true}, SHIFT(871), - [1804] = {.count = 1, .reusable = false}, SHIFT(872), - [1806] = {.count = 1, .reusable = false}, SHIFT(871), - [1808] = {.count = 1, .reusable = true}, SHIFT(874), - [1810] = {.count = 1, .reusable = true}, SHIFT(884), - [1812] = {.count = 1, .reusable = false}, SHIFT(885), - [1814] = {.count = 1, .reusable = true}, SHIFT(885), - [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), + [1699] = {.count = 1, .reusable = true}, SHIFT(830), + [1701] = {.count = 1, .reusable = false}, SHIFT(832), + [1703] = {.count = 1, .reusable = true}, SHIFT(832), + [1705] = {.count = 1, .reusable = true}, SHIFT(831), + [1707] = {.count = 1, .reusable = true}, SHIFT(833), + [1709] = {.count = 1, .reusable = false}, SHIFT(835), + [1711] = {.count = 1, .reusable = true}, SHIFT(835), + [1713] = {.count = 1, .reusable = true}, SHIFT(834), + [1715] = {.count = 1, .reusable = true}, SHIFT(836), + [1717] = {.count = 1, .reusable = true}, SHIFT(837), + [1719] = {.count = 1, .reusable = false}, SHIFT(837), + [1721] = {.count = 1, .reusable = true}, SHIFT(840), + [1723] = {.count = 1, .reusable = false}, SHIFT(840), + [1725] = {.count = 1, .reusable = false}, SHIFT(843), + [1727] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(844), + [1730] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(130), + [1733] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(131), + [1736] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(132), + [1739] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), + [1742] = {.count = 1, .reusable = true}, SHIFT(845), + [1744] = {.count = 1, .reusable = true}, SHIFT(846), + [1746] = {.count = 1, .reusable = true}, SHIFT(848), + [1748] = {.count = 1, .reusable = false}, SHIFT(849), + [1750] = {.count = 1, .reusable = true}, SHIFT(850), + [1752] = {.count = 1, .reusable = false}, SHIFT(851), + [1754] = {.count = 1, .reusable = true}, SHIFT(852), + [1756] = {.count = 1, .reusable = true}, SHIFT(853), + [1758] = {.count = 1, .reusable = true}, SHIFT(854), + [1760] = {.count = 1, .reusable = true}, SHIFT(855), + [1762] = {.count = 1, .reusable = true}, SHIFT(856), + [1764] = {.count = 1, .reusable = true}, SHIFT(858), + [1766] = {.count = 1, .reusable = true}, SHIFT(859), + [1768] = {.count = 1, .reusable = false}, SHIFT(861), + [1770] = {.count = 1, .reusable = true}, SHIFT(861), + [1772] = {.count = 1, .reusable = true}, SHIFT(860), + [1774] = {.count = 1, .reusable = true}, SHIFT(862), + [1776] = {.count = 1, .reusable = false}, SHIFT(864), + [1778] = {.count = 1, .reusable = true}, SHIFT(864), + [1780] = {.count = 1, .reusable = true}, SHIFT(863), + [1782] = {.count = 1, .reusable = false}, SHIFT(866), + [1784] = {.count = 1, .reusable = true}, SHIFT(866), + [1786] = {.count = 1, .reusable = true}, SHIFT(865), + [1788] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1790] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1792] = {.count = 1, .reusable = true}, SHIFT(867), + [1794] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1796] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1798] = {.count = 1, .reusable = false}, SHIFT(869), + [1800] = {.count = 1, .reusable = false}, SHIFT(870), + [1802] = {.count = 1, .reusable = true}, SHIFT(872), + [1804] = {.count = 1, .reusable = true}, SHIFT(873), + [1806] = {.count = 1, .reusable = false}, SHIFT(874), + [1808] = {.count = 1, .reusable = false}, SHIFT(872), + [1810] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1812] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1814] = {.count = 1, .reusable = true}, SHIFT(875), + [1816] = {.count = 1, .reusable = true}, SHIFT(876), + [1818] = {.count = 1, .reusable = true}, SHIFT(877), + [1820] = {.count = 1, .reusable = false}, SHIFT(878), + [1822] = {.count = 1, .reusable = false}, SHIFT(877), + [1824] = {.count = 1, .reusable = true}, SHIFT(880), + [1826] = {.count = 1, .reusable = true}, SHIFT(890), + [1828] = {.count = 1, .reusable = false}, SHIFT(891), + [1830] = {.count = 1, .reusable = true}, SHIFT(891), + [1832] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1834] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1836] = {.count = 1, .reusable = true}, SHIFT(892), + [1838] = {.count = 1, .reusable = true}, SHIFT(893), + [1840] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [1842] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), [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(915), - [1904] = {.count = 1, .reusable = true}, SHIFT(919), - [1906] = {.count = 1, .reusable = true}, SHIFT(918), + [1846] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [1848] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [1850] = {.count = 1, .reusable = true}, SHIFT(895), + [1852] = {.count = 1, .reusable = true}, SHIFT(896), + [1854] = {.count = 1, .reusable = false}, SHIFT(896), + [1856] = {.count = 1, .reusable = true}, SHIFT(898), + [1858] = {.count = 1, .reusable = true}, SHIFT(900), + [1860] = {.count = 1, .reusable = true}, SHIFT(901), + [1862] = {.count = 1, .reusable = false}, SHIFT(905), + [1864] = {.count = 1, .reusable = true}, SHIFT(905), + [1866] = {.count = 1, .reusable = true}, SHIFT(906), + [1868] = {.count = 1, .reusable = true}, SHIFT(907), + [1870] = {.count = 1, .reusable = true}, SHIFT(908), + [1872] = {.count = 1, .reusable = true}, SHIFT(909), + [1874] = {.count = 1, .reusable = true}, SHIFT(912), + [1876] = {.count = 1, .reusable = false}, SHIFT(912), + [1878] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [1880] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [1882] = {.count = 1, .reusable = true}, SHIFT(914), + [1884] = {.count = 1, .reusable = true}, SHIFT(915), + [1886] = {.count = 1, .reusable = false}, SHIFT(915), + [1888] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [1890] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [1892] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [1894] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [1896] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [1898] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [1900] = {.count = 1, .reusable = true}, SHIFT(917), + [1902] = {.count = 1, .reusable = false}, SHIFT(918), + [1904] = {.count = 1, .reusable = false}, SHIFT(917), + [1906] = {.count = 1, .reusable = true}, SHIFT(919), [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(941), - [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 = true}, SHIFT(961), - [2043] = {.count = 1, .reusable = false}, SHIFT(962), - [2045] = {.count = 1, .reusable = false}, SHIFT(961), - [2047] = {.count = 1, .reusable = true}, SHIFT(964), - [2049] = {.count = 1, .reusable = false}, SHIFT(966), - [2051] = {.count = 1, .reusable = true}, SHIFT(966), - [2053] = {.count = 1, .reusable = true}, SHIFT(965), - [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 = true}, SHIFT(1004), - [2133] = {.count = 1, .reusable = false}, SHIFT(1005), - [2135] = {.count = 1, .reusable = false}, SHIFT(1004), - [2137] = {.count = 1, .reusable = true}, SHIFT(1007), - [2139] = {.count = 1, .reusable = false}, SHIFT(1009), - [2141] = {.count = 1, .reusable = true}, SHIFT(1009), - [2143] = {.count = 1, .reusable = true}, SHIFT(1008), - [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 = false}, SHIFT(1064), - [2264] = {.count = 1, .reusable = true}, SHIFT(1064), - [2266] = {.count = 1, .reusable = true}, SHIFT(1063), - [2268] = {.count = 1, .reusable = true}, SHIFT(1065), + [1912] = {.count = 1, .reusable = false}, SHIFT(922), + [1914] = {.count = 1, .reusable = false}, SHIFT(921), + [1916] = {.count = 1, .reusable = true}, SHIFT(925), + [1918] = {.count = 1, .reusable = true}, SHIFT(924), + [1920] = {.count = 1, .reusable = true}, SHIFT(926), + [1922] = {.count = 1, .reusable = true}, SHIFT(927), + [1924] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1926] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1928] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [1930] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [1932] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [1934] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [1936] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [1938] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [1940] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [1942] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [1944] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [1946] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [1948] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), + [1950] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(168), + [1953] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [1955] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(170), + [1958] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(170), + [1961] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(171), + [1964] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(171), + [1967] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(172), + [1970] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(169), + [1973] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(173), + [1976] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), + [1979] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), + [1982] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(174), + [1985] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [1988] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [1991] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [1994] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), + [1997] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(174), + [2000] = {.count = 1, .reusable = true}, SHIFT(932), + [2002] = {.count = 1, .reusable = false}, SHIFT(662), + [2004] = {.count = 1, .reusable = true}, SHIFT(933), + [2006] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [2008] = {.count = 1, .reusable = true}, SHIFT(935), + [2010] = {.count = 1, .reusable = true}, SHIFT(936), + [2012] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [2014] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [2016] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [2018] = {.count = 1, .reusable = true}, SHIFT(937), + [2020] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2022] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2024] = {.count = 1, .reusable = false}, SHIFT(939), + [2026] = {.count = 1, .reusable = false}, SHIFT(940), + [2028] = {.count = 1, .reusable = true}, SHIFT(942), + [2030] = {.count = 1, .reusable = true}, SHIFT(943), + [2032] = {.count = 1, .reusable = false}, SHIFT(944), + [2034] = {.count = 1, .reusable = false}, SHIFT(942), + [2036] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2038] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2040] = {.count = 1, .reusable = true}, SHIFT(945), + [2042] = {.count = 1, .reusable = true}, SHIFT(946), + [2044] = {.count = 1, .reusable = true}, SHIFT(947), + [2046] = {.count = 1, .reusable = false}, SHIFT(948), + [2048] = {.count = 1, .reusable = false}, SHIFT(947), + [2050] = {.count = 1, .reusable = true}, SHIFT(959), + [2052] = {.count = 1, .reusable = true}, SHIFT(961), + [2054] = {.count = 1, .reusable = false}, SHIFT(963), + [2056] = {.count = 1, .reusable = false}, SHIFT(964), + [2058] = {.count = 1, .reusable = true}, SHIFT(965), + [2060] = {.count = 1, .reusable = true}, SHIFT(966), + [2062] = {.count = 1, .reusable = true}, SHIFT(967), + [2064] = {.count = 1, .reusable = false}, SHIFT(968), + [2066] = {.count = 1, .reusable = false}, SHIFT(967), + [2068] = {.count = 1, .reusable = true}, SHIFT(970), + [2070] = {.count = 1, .reusable = false}, SHIFT(972), + [2072] = {.count = 1, .reusable = true}, SHIFT(972), + [2074] = {.count = 1, .reusable = true}, SHIFT(971), + [2076] = {.count = 1, .reusable = true}, SHIFT(973), + [2078] = {.count = 1, .reusable = false}, SHIFT(975), + [2080] = {.count = 1, .reusable = true}, SHIFT(975), + [2082] = {.count = 1, .reusable = true}, SHIFT(974), + [2084] = {.count = 1, .reusable = true}, SHIFT(976), + [2086] = {.count = 1, .reusable = false}, SHIFT(978), + [2088] = {.count = 1, .reusable = true}, SHIFT(978), + [2090] = {.count = 1, .reusable = true}, SHIFT(977), + [2092] = {.count = 1, .reusable = true}, SHIFT(979), + [2094] = {.count = 1, .reusable = true}, SHIFT(980), + [2096] = {.count = 1, .reusable = false}, SHIFT(980), + [2098] = {.count = 1, .reusable = true}, SHIFT(983), + [2100] = {.count = 1, .reusable = false}, SHIFT(983), + [2102] = {.count = 1, .reusable = true}, SHIFT(986), + [2104] = {.count = 1, .reusable = true}, SHIFT(987), + [2106] = {.count = 1, .reusable = false}, SHIFT(987), + [2108] = {.count = 1, .reusable = true}, SHIFT(990), + [2110] = {.count = 1, .reusable = true}, SHIFT(991), + [2112] = {.count = 1, .reusable = false}, SHIFT(992), + [2114] = {.count = 1, .reusable = true}, SHIFT(993), + [2116] = {.count = 1, .reusable = true}, SHIFT(994), + [2118] = {.count = 1, .reusable = false}, SHIFT(995), + [2120] = {.count = 1, .reusable = true}, SHIFT(996), + [2122] = {.count = 1, .reusable = true}, SHIFT(997), + [2124] = {.count = 1, .reusable = true}, SHIFT(998), + [2126] = {.count = 1, .reusable = true}, SHIFT(999), + [2128] = {.count = 1, .reusable = true}, SHIFT(1000), + [2130] = {.count = 1, .reusable = false}, SHIFT(996), + [2132] = {.count = 1, .reusable = true}, SHIFT(992), + [2134] = {.count = 1, .reusable = true}, SHIFT(1002), + [2136] = {.count = 1, .reusable = false}, SHIFT(1002), + [2138] = {.count = 1, .reusable = true}, SHIFT(1003), + [2140] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), + [2142] = {.count = 1, .reusable = true}, SHIFT(1004), + [2144] = {.count = 1, .reusable = false}, SHIFT(1006), + [2146] = {.count = 1, .reusable = false}, SHIFT(1007), + [2148] = {.count = 1, .reusable = true}, SHIFT(1008), + [2150] = {.count = 1, .reusable = true}, SHIFT(1009), + [2152] = {.count = 1, .reusable = true}, SHIFT(1010), + [2154] = {.count = 1, .reusable = false}, SHIFT(1011), + [2156] = {.count = 1, .reusable = false}, SHIFT(1010), + [2158] = {.count = 1, .reusable = true}, SHIFT(1013), + [2160] = {.count = 1, .reusable = false}, SHIFT(1015), + [2162] = {.count = 1, .reusable = true}, SHIFT(1015), + [2164] = {.count = 1, .reusable = true}, SHIFT(1014), + [2166] = {.count = 1, .reusable = true}, SHIFT(1016), + [2168] = {.count = 1, .reusable = false}, SHIFT(1018), + [2170] = {.count = 1, .reusable = true}, SHIFT(1018), + [2172] = {.count = 1, .reusable = true}, SHIFT(1017), + [2174] = {.count = 1, .reusable = true}, SHIFT(1019), + [2176] = {.count = 1, .reusable = false}, SHIFT(1021), + [2178] = {.count = 1, .reusable = true}, SHIFT(1021), + [2180] = {.count = 1, .reusable = true}, SHIFT(1020), + [2182] = {.count = 1, .reusable = true}, SHIFT(1022), + [2184] = {.count = 1, .reusable = true}, SHIFT(1023), + [2186] = {.count = 1, .reusable = false}, SHIFT(1023), + [2188] = {.count = 1, .reusable = true}, SHIFT(1026), + [2190] = {.count = 1, .reusable = false}, SHIFT(1026), + [2192] = {.count = 1, .reusable = true}, SHIFT(1029), + [2194] = {.count = 1, .reusable = true}, SHIFT(1030), + [2196] = {.count = 1, .reusable = false}, SHIFT(1030), + [2198] = {.count = 1, .reusable = false}, SHIFT(198), + [2200] = {.count = 1, .reusable = false}, SHIFT(200), + [2202] = {.count = 1, .reusable = false}, SHIFT(201), + [2204] = {.count = 1, .reusable = false}, SHIFT(204), + [2206] = {.count = 1, .reusable = false}, SHIFT(205), + [2208] = {.count = 1, .reusable = false}, SHIFT(206), + [2210] = {.count = 1, .reusable = false}, SHIFT(207), + [2212] = {.count = 1, .reusable = false}, SHIFT(1035), + [2214] = {.count = 1, .reusable = true}, SHIFT(1036), + [2216] = {.count = 1, .reusable = false}, SHIFT(1038), + [2218] = {.count = 1, .reusable = false}, SHIFT(1039), + [2220] = {.count = 1, .reusable = true}, SHIFT(1041), + [2222] = {.count = 1, .reusable = true}, SHIFT(1042), + [2224] = {.count = 1, .reusable = false}, SHIFT(1043), + [2226] = {.count = 1, .reusable = false}, SHIFT(1041), + [2228] = {.count = 1, .reusable = true}, SHIFT(1044), + [2230] = {.count = 1, .reusable = true}, SHIFT(1045), + [2232] = {.count = 1, .reusable = true}, SHIFT(1046), + [2234] = {.count = 1, .reusable = false}, SHIFT(1047), + [2236] = {.count = 1, .reusable = false}, SHIFT(1046), + [2238] = {.count = 1, .reusable = true}, SHIFT(1058), + [2240] = {.count = 1, .reusable = false}, SHIFT(565), + [2242] = {.count = 1, .reusable = false}, SHIFT(1058), + [2244] = {.count = 1, .reusable = false}, SHIFT(1060), + [2246] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2248] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2250] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [2252] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [2254] = {.count = 1, .reusable = false}, SHIFT(1062), + [2256] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), + [2258] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), + [2260] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [2262] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [2264] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [2266] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2268] = {.count = 1, .reusable = true}, SHIFT(1067), [2270] = {.count = 1, .reusable = false}, SHIFT(1067), - [2272] = {.count = 1, .reusable = true}, SHIFT(1067), - [2274] = {.count = 1, .reusable = true}, SHIFT(1066), - [2276] = {.count = 1, .reusable = false}, SHIFT(1069), - [2278] = {.count = 1, .reusable = true}, SHIFT(1069), - [2280] = {.count = 1, .reusable = true}, SHIFT(1068), - [2282] = {.count = 1, .reusable = true}, SHIFT(1070), - [2284] = {.count = 1, .reusable = true}, SHIFT(1071), - [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 = false}, SHIFT(1118), - [2418] = {.count = 1, .reusable = true}, SHIFT(1118), - [2420] = {.count = 1, .reusable = true}, SHIFT(1117), - [2422] = {.count = 1, .reusable = true}, SHIFT(1119), - [2424] = {.count = 1, .reusable = false}, SHIFT(1121), - [2426] = {.count = 1, .reusable = true}, SHIFT(1121), - [2428] = {.count = 1, .reusable = true}, SHIFT(1120), - [2430] = {.count = 1, .reusable = false}, SHIFT(1123), - [2432] = {.count = 1, .reusable = true}, SHIFT(1123), - [2434] = {.count = 1, .reusable = true}, SHIFT(1122), - [2436] = {.count = 1, .reusable = true}, SHIFT(1124), - [2438] = {.count = 1, .reusable = true}, SHIFT(1125), - [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 = false}, SHIFT(1157), - [2517] = {.count = 1, .reusable = true}, SHIFT(1157), - [2519] = {.count = 1, .reusable = true}, SHIFT(1156), - [2521] = {.count = 1, .reusable = true}, SHIFT(1158), - [2523] = {.count = 1, .reusable = false}, SHIFT(1160), - [2525] = {.count = 1, .reusable = true}, SHIFT(1160), - [2527] = {.count = 1, .reusable = true}, SHIFT(1159), - [2529] = {.count = 1, .reusable = false}, SHIFT(1162), - [2531] = {.count = 1, .reusable = true}, SHIFT(1162), - [2533] = {.count = 1, .reusable = true}, SHIFT(1161), - [2535] = {.count = 1, .reusable = true}, SHIFT(1163), - [2537] = {.count = 1, .reusable = true}, SHIFT(1164), - [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 = false}, SHIFT(1183), - [2584] = {.count = 1, .reusable = true}, SHIFT(1183), - [2586] = {.count = 1, .reusable = true}, SHIFT(1182), - [2588] = {.count = 1, .reusable = true}, SHIFT(1184), - [2590] = {.count = 1, .reusable = false}, SHIFT(1186), - [2592] = {.count = 1, .reusable = true}, SHIFT(1186), - [2594] = {.count = 1, .reusable = true}, SHIFT(1185), - [2596] = {.count = 1, .reusable = false}, SHIFT(1188), - [2598] = {.count = 1, .reusable = true}, SHIFT(1188), - [2600] = {.count = 1, .reusable = true}, SHIFT(1187), - [2602] = {.count = 1, .reusable = true}, SHIFT(1189), - [2604] = {.count = 1, .reusable = true}, SHIFT(1190), - [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 = false}, SHIFT(1207), - [2649] = {.count = 1, .reusable = true}, SHIFT(1207), - [2651] = {.count = 1, .reusable = true}, SHIFT(1206), - [2653] = {.count = 1, .reusable = true}, SHIFT(1208), - [2655] = {.count = 1, .reusable = false}, SHIFT(1210), - [2657] = {.count = 1, .reusable = true}, SHIFT(1210), - [2659] = {.count = 1, .reusable = true}, SHIFT(1209), - [2661] = {.count = 1, .reusable = false}, SHIFT(1212), - [2663] = {.count = 1, .reusable = true}, SHIFT(1212), - [2665] = {.count = 1, .reusable = true}, SHIFT(1211), - [2667] = {.count = 1, .reusable = true}, SHIFT(1213), - [2669] = {.count = 1, .reusable = true}, SHIFT(1214), - [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 = false}, SHIFT(1231), - [2714] = {.count = 1, .reusable = true}, SHIFT(1231), - [2716] = {.count = 1, .reusable = true}, SHIFT(1230), - [2718] = {.count = 1, .reusable = true}, SHIFT(1232), - [2720] = {.count = 1, .reusable = false}, SHIFT(1234), - [2722] = {.count = 1, .reusable = true}, SHIFT(1234), - [2724] = {.count = 1, .reusable = true}, SHIFT(1233), - [2726] = {.count = 1, .reusable = false}, SHIFT(1236), - [2728] = {.count = 1, .reusable = true}, SHIFT(1236), - [2730] = {.count = 1, .reusable = true}, SHIFT(1235), - [2732] = {.count = 1, .reusable = true}, SHIFT(1237), - [2734] = {.count = 1, .reusable = true}, SHIFT(1238), - [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 = false}, SHIFT(1254), - [2778] = {.count = 1, .reusable = true}, SHIFT(1254), - [2780] = {.count = 1, .reusable = true}, SHIFT(1253), - [2782] = {.count = 1, .reusable = true}, SHIFT(1255), - [2784] = {.count = 1, .reusable = false}, SHIFT(1257), - [2786] = {.count = 1, .reusable = true}, SHIFT(1257), - [2788] = {.count = 1, .reusable = true}, SHIFT(1256), - [2790] = {.count = 1, .reusable = false}, SHIFT(1259), - [2792] = {.count = 1, .reusable = true}, SHIFT(1259), - [2794] = {.count = 1, .reusable = true}, SHIFT(1258), - [2796] = {.count = 1, .reusable = true}, SHIFT(1260), - [2798] = {.count = 1, .reusable = true}, SHIFT(1261), - [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(1285), - [2864] = {.count = 1, .reusable = false}, SHIFT(1297), - [2866] = {.count = 1, .reusable = true}, SHIFT(1298), - [2868] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [2870] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [2872] = {.count = 1, .reusable = true}, SHIFT(1300), - [2874] = {.count = 1, .reusable = true}, SHIFT(1301), - [2876] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [2878] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [2880] = {.count = 1, .reusable = true}, SHIFT(1302), - [2882] = {.count = 1, .reusable = true}, SHIFT(1303), - [2884] = {.count = 1, .reusable = true}, SHIFT(1304), - [2886] = {.count = 1, .reusable = true}, SHIFT(1305), - [2888] = {.count = 1, .reusable = false}, SHIFT(1307), - [2890] = {.count = 1, .reusable = false}, SHIFT(1308), - [2892] = {.count = 1, .reusable = true}, SHIFT(1309), - [2894] = {.count = 1, .reusable = true}, SHIFT(1310), - [2896] = {.count = 1, .reusable = true}, SHIFT(1311), - [2898] = {.count = 1, .reusable = false}, SHIFT(1312), - [2900] = {.count = 1, .reusable = false}, SHIFT(1311), - [2902] = {.count = 1, .reusable = true}, SHIFT(1314), - [2904] = {.count = 1, .reusable = false}, SHIFT(1316), - [2906] = {.count = 1, .reusable = true}, SHIFT(1316), - [2908] = {.count = 1, .reusable = true}, SHIFT(1315), - [2910] = {.count = 1, .reusable = true}, SHIFT(1317), - [2912] = {.count = 1, .reusable = false}, SHIFT(1319), - [2914] = {.count = 1, .reusable = true}, SHIFT(1319), - [2916] = {.count = 1, .reusable = true}, SHIFT(1318), - [2918] = {.count = 1, .reusable = true}, SHIFT(1320), - [2920] = {.count = 1, .reusable = false}, SHIFT(1322), - [2922] = {.count = 1, .reusable = true}, SHIFT(1322), - [2924] = {.count = 1, .reusable = true}, SHIFT(1321), - [2926] = {.count = 1, .reusable = true}, SHIFT(1323), - [2928] = {.count = 1, .reusable = false}, SHIFT(1324), - [2930] = {.count = 1, .reusable = true}, SHIFT(1324), - [2932] = {.count = 1, .reusable = false}, SHIFT(1325), - [2934] = {.count = 1, .reusable = false}, SHIFT(1326), - [2936] = {.count = 1, .reusable = true}, SHIFT(1326), - [2938] = {.count = 1, .reusable = false}, SHIFT(1329), - [2940] = {.count = 1, .reusable = true}, SHIFT(1329), - [2942] = {.count = 1, .reusable = false}, SHIFT(1332), - [2944] = {.count = 1, .reusable = false}, SHIFT(1333), - [2946] = {.count = 1, .reusable = true}, SHIFT(1333), - [2948] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [2950] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [2952] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [2954] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(885), - [2957] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(428), - [2960] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(429), - [2963] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(430), - [2966] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(431), - [2969] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(885), - [2972] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(432), - [2975] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(434), - [2978] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(435), - [2981] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(436), - [2984] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(431), - [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 = true}, SHIFT(1358), - [3046] = {.count = 1, .reusable = false}, SHIFT(1359), - [3048] = {.count = 1, .reusable = false}, SHIFT(1358), - [3050] = {.count = 1, .reusable = true}, SHIFT(1361), - [3052] = {.count = 1, .reusable = false}, SHIFT(1363), - [3054] = {.count = 1, .reusable = true}, SHIFT(1363), - [3056] = {.count = 1, .reusable = true}, SHIFT(1362), - [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 = true}, SHIFT(1380), - [3113] = {.count = 1, .reusable = false}, SHIFT(1381), - [3115] = {.count = 1, .reusable = false}, SHIFT(1380), - [3117] = {.count = 1, .reusable = true}, SHIFT(1383), - [3119] = {.count = 1, .reusable = false}, SHIFT(1385), - [3121] = {.count = 1, .reusable = true}, SHIFT(1385), - [3123] = {.count = 1, .reusable = true}, SHIFT(1384), - [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 = false}, SHIFT(1411), - [3204] = {.count = 1, .reusable = true}, SHIFT(1411), - [3206] = {.count = 1, .reusable = true}, SHIFT(1410), - [3208] = {.count = 1, .reusable = true}, SHIFT(1412), - [3210] = {.count = 1, .reusable = false}, SHIFT(1414), - [3212] = {.count = 1, .reusable = true}, SHIFT(1414), - [3214] = {.count = 1, .reusable = true}, SHIFT(1413), - [3216] = {.count = 1, .reusable = false}, SHIFT(1416), - [3218] = {.count = 1, .reusable = true}, SHIFT(1416), - [3220] = {.count = 1, .reusable = true}, SHIFT(1415), - [3222] = {.count = 1, .reusable = true}, SHIFT(1417), - [3224] = {.count = 1, .reusable = true}, SHIFT(1418), - [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(1441), - [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 = false}, SHIFT(1465), - [3303] = {.count = 1, .reusable = true}, SHIFT(1465), - [3305] = {.count = 1, .reusable = true}, SHIFT(1464), - [3307] = {.count = 1, .reusable = true}, SHIFT(1466), - [3309] = {.count = 1, .reusable = false}, SHIFT(1468), - [3311] = {.count = 1, .reusable = true}, SHIFT(1468), - [3313] = {.count = 1, .reusable = true}, SHIFT(1467), - [3315] = {.count = 1, .reusable = false}, SHIFT(1470), - [3317] = {.count = 1, .reusable = true}, SHIFT(1470), - [3319] = {.count = 1, .reusable = true}, SHIFT(1469), - [3321] = {.count = 1, .reusable = true}, SHIFT(1471), - [3323] = {.count = 1, .reusable = true}, SHIFT(1472), - [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 = false}, SHIFT(1506), - [3436] = {.count = 1, .reusable = true}, SHIFT(1507), - [3438] = {.count = 1, .reusable = true}, SHIFT(1509), - [3440] = {.count = 1, .reusable = true}, SHIFT(1510), - [3442] = {.count = 1, .reusable = true}, SHIFT(1511), - [3444] = {.count = 1, .reusable = true}, SHIFT(1512), - [3446] = {.count = 1, .reusable = true}, SHIFT(1513), - [3448] = {.count = 1, .reusable = true}, SHIFT(1514), - [3450] = {.count = 1, .reusable = false}, SHIFT(1515), - [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 = false}, SHIFT(1542), - [3514] = {.count = 1, .reusable = true}, SHIFT(1543), - [3516] = {.count = 1, .reusable = true}, SHIFT(1545), - [3518] = {.count = 1, .reusable = true}, SHIFT(1546), - [3520] = {.count = 1, .reusable = true}, SHIFT(1547), - [3522] = {.count = 1, .reusable = true}, SHIFT(1548), - [3524] = {.count = 1, .reusable = true}, SHIFT(1549), - [3526] = {.count = 1, .reusable = true}, SHIFT(1550), - [3528] = {.count = 1, .reusable = false}, SHIFT(1551), - [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(1571), - [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 = false}, SHIFT(1585), - [3594] = {.count = 1, .reusable = true}, SHIFT(1586), - [3596] = {.count = 1, .reusable = true}, SHIFT(1588), - [3598] = {.count = 1, .reusable = true}, SHIFT(1589), - [3600] = {.count = 1, .reusable = true}, SHIFT(1590), - [3602] = {.count = 1, .reusable = true}, SHIFT(1591), - [3604] = {.count = 1, .reusable = true}, SHIFT(1592), - [3606] = {.count = 1, .reusable = true}, SHIFT(1593), - [3608] = {.count = 1, .reusable = false}, SHIFT(1594), - [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 = false}, SHIFT(1604), - [3636] = {.count = 1, .reusable = true}, SHIFT(1605), - [3638] = {.count = 1, .reusable = true}, SHIFT(1607), - [3640] = {.count = 1, .reusable = true}, SHIFT(1608), - [3642] = {.count = 1, .reusable = true}, SHIFT(1609), - [3644] = {.count = 1, .reusable = true}, SHIFT(1610), - [3646] = {.count = 1, .reusable = true}, SHIFT(1611), - [3648] = {.count = 1, .reusable = true}, SHIFT(1612), - [3650] = {.count = 1, .reusable = false}, SHIFT(1613), - [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 = false}, SHIFT(1622), - [3676] = {.count = 1, .reusable = true}, SHIFT(1623), - [3678] = {.count = 1, .reusable = true}, SHIFT(1625), - [3680] = {.count = 1, .reusable = true}, SHIFT(1626), - [3682] = {.count = 1, .reusable = true}, SHIFT(1627), - [3684] = {.count = 1, .reusable = true}, SHIFT(1628), - [3686] = {.count = 1, .reusable = true}, SHIFT(1629), - [3688] = {.count = 1, .reusable = true}, SHIFT(1630), - [3690] = {.count = 1, .reusable = false}, SHIFT(1631), - [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 = false}, SHIFT(1640), - [3716] = {.count = 1, .reusable = true}, SHIFT(1641), - [3718] = {.count = 1, .reusable = true}, SHIFT(1643), - [3720] = {.count = 1, .reusable = true}, SHIFT(1644), - [3722] = {.count = 1, .reusable = true}, SHIFT(1645), - [3724] = {.count = 1, .reusable = true}, SHIFT(1646), - [3726] = {.count = 1, .reusable = true}, SHIFT(1647), - [3728] = {.count = 1, .reusable = true}, SHIFT(1648), - [3730] = {.count = 1, .reusable = false}, SHIFT(1649), - [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 = false}, SHIFT(1658), - [3756] = {.count = 1, .reusable = true}, SHIFT(1659), - [3758] = {.count = 1, .reusable = true}, SHIFT(1661), - [3760] = {.count = 1, .reusable = true}, SHIFT(1662), - [3762] = {.count = 1, .reusable = true}, SHIFT(1663), - [3764] = {.count = 1, .reusable = true}, SHIFT(1664), - [3766] = {.count = 1, .reusable = true}, SHIFT(1665), - [3768] = {.count = 1, .reusable = true}, SHIFT(1666), - [3770] = {.count = 1, .reusable = false}, SHIFT(1667), - [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 = true}, SHIFT(1683), - [3820] = {.count = 1, .reusable = false}, SHIFT(1684), - [3822] = {.count = 1, .reusable = false}, SHIFT(1683), - [3824] = {.count = 1, .reusable = true}, SHIFT(1686), - [3826] = {.count = 1, .reusable = false}, SHIFT(1688), - [3828] = {.count = 1, .reusable = true}, SHIFT(1688), - [3830] = {.count = 1, .reusable = true}, SHIFT(1687), - [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 = 1, .reusable = true}, SHIFT(1706), - [3866] = {.count = 1, .reusable = true}, SHIFT(1707), - [3868] = {.count = 1, .reusable = true}, SHIFT(1708), - [3870] = {.count = 1, .reusable = false}, SHIFT(1709), - [3872] = {.count = 1, .reusable = true}, SHIFT(1709), - [3874] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [3876] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [3878] = {.count = 1, .reusable = true}, SHIFT(1710), - [3880] = {.count = 1, .reusable = false}, SHIFT(1711), - [3882] = {.count = 1, .reusable = true}, SHIFT(1711), - [3884] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [3886] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [3888] = {.count = 1, .reusable = true}, SHIFT(1712), - [3890] = {.count = 1, .reusable = false}, SHIFT(1713), - [3892] = {.count = 1, .reusable = true}, SHIFT(1713), - [3894] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(861), - [3897] = {.count = 1, .reusable = false}, SHIFT(1714), - [3899] = {.count = 1, .reusable = true}, SHIFT(1715), - [3901] = {.count = 1, .reusable = false}, SHIFT(1716), - [3903] = {.count = 1, .reusable = true}, SHIFT(1717), - [3905] = {.count = 1, .reusable = true}, SHIFT(1719), - [3907] = {.count = 1, .reusable = true}, SHIFT(1720), - [3909] = {.count = 1, .reusable = false}, SHIFT(1722), - [3911] = {.count = 1, .reusable = true}, SHIFT(1722), - [3913] = {.count = 1, .reusable = true}, SHIFT(1721), - [3915] = {.count = 1, .reusable = true}, SHIFT(1723), - [3917] = {.count = 1, .reusable = false}, SHIFT(1725), - [3919] = {.count = 1, .reusable = true}, SHIFT(1725), - [3921] = {.count = 1, .reusable = true}, SHIFT(1724), - [3923] = {.count = 1, .reusable = false}, SHIFT(1727), - [3925] = {.count = 1, .reusable = true}, SHIFT(1727), - [3927] = {.count = 1, .reusable = true}, SHIFT(1726), - [3929] = {.count = 1, .reusable = true}, SHIFT(1728), - [3931] = {.count = 1, .reusable = true}, SHIFT(1729), - [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}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [3941] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [3943] = {.count = 1, .reusable = true}, SHIFT(1733), - [3945] = {.count = 1, .reusable = true}, SHIFT(1734), - [3947] = {.count = 1, .reusable = false}, SHIFT(1734), - [3949] = {.count = 1, .reusable = false}, SHIFT(1735), - [3951] = {.count = 1, .reusable = true}, SHIFT(1735), - [3953] = {.count = 1, .reusable = false}, SHIFT(1736), - [3955] = {.count = 1, .reusable = true}, SHIFT(1736), - [3957] = {.count = 1, .reusable = true}, SHIFT(1737), - [3959] = {.count = 1, .reusable = false}, 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 = false}, SHIFT(1759), - [4017] = {.count = 1, .reusable = true}, SHIFT(1759), - [4019] = {.count = 1, .reusable = true}, SHIFT(1758), - [4021] = {.count = 1, .reusable = true}, SHIFT(1760), - [4023] = {.count = 1, .reusable = false}, SHIFT(1762), - [4025] = {.count = 1, .reusable = true}, SHIFT(1762), - [4027] = {.count = 1, .reusable = true}, SHIFT(1761), - [4029] = {.count = 1, .reusable = false}, SHIFT(1764), - [4031] = {.count = 1, .reusable = true}, SHIFT(1764), - [4033] = {.count = 1, .reusable = true}, SHIFT(1763), - [4035] = {.count = 1, .reusable = true}, SHIFT(1765), - [4037] = {.count = 1, .reusable = true}, SHIFT(1766), - [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 = false}, SHIFT(1778), - [4070] = {.count = 1, .reusable = true}, SHIFT(1778), - [4072] = {.count = 1, .reusable = true}, SHIFT(1777), - [4074] = {.count = 1, .reusable = true}, SHIFT(1779), - [4076] = {.count = 1, .reusable = false}, SHIFT(1781), - [4078] = {.count = 1, .reusable = true}, SHIFT(1781), - [4080] = {.count = 1, .reusable = true}, SHIFT(1780), - [4082] = {.count = 1, .reusable = false}, SHIFT(1783), - [4084] = {.count = 1, .reusable = true}, SHIFT(1783), - [4086] = {.count = 1, .reusable = true}, SHIFT(1782), - [4088] = {.count = 1, .reusable = true}, SHIFT(1784), - [4090] = {.count = 1, .reusable = true}, SHIFT(1785), - [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 = false}, SHIFT(1796), - [4124] = {.count = 1, .reusable = true}, SHIFT(1797), - [4126] = {.count = 1, .reusable = true}, SHIFT(1799), - [4128] = {.count = 1, .reusable = true}, SHIFT(1800), - [4130] = {.count = 1, .reusable = true}, SHIFT(1801), - [4132] = {.count = 1, .reusable = true}, SHIFT(1802), - [4134] = {.count = 1, .reusable = true}, SHIFT(1803), - [4136] = {.count = 1, .reusable = true}, SHIFT(1804), - [4138] = {.count = 1, .reusable = false}, SHIFT(1805), - [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 = true}, SHIFT(1821), - [4178] = {.count = 1, .reusable = false}, SHIFT(1822), - [4180] = {.count = 1, .reusable = false}, SHIFT(1821), - [4182] = {.count = 1, .reusable = true}, SHIFT(1824), - [4184] = {.count = 1, .reusable = false}, SHIFT(1826), - [4186] = {.count = 1, .reusable = true}, SHIFT(1826), - [4188] = {.count = 1, .reusable = true}, SHIFT(1825), - [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 = false}, SHIFT(1850), - [4246] = {.count = 1, .reusable = true}, SHIFT(1851), - [4248] = {.count = 1, .reusable = true}, SHIFT(1853), - [4250] = {.count = 1, .reusable = true}, SHIFT(1854), - [4252] = {.count = 1, .reusable = true}, SHIFT(1855), - [4254] = {.count = 1, .reusable = true}, SHIFT(1856), - [4256] = {.count = 1, .reusable = true}, SHIFT(1857), - [4258] = {.count = 1, .reusable = true}, SHIFT(1858), - [4260] = {.count = 1, .reusable = false}, SHIFT(1859), - [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 = false}, SHIFT(1908), - [4382] = {.count = 1, .reusable = true}, SHIFT(1908), - [4384] = {.count = 1, .reusable = true}, SHIFT(1909), - [4386] = {.count = 1, .reusable = false}, SHIFT(1910), - [4388] = {.count = 1, .reusable = true}, SHIFT(1910), - [4390] = {.count = 1, .reusable = true}, SHIFT(1911), - [4392] = {.count = 1, .reusable = false}, SHIFT(1912), - [4394] = {.count = 1, .reusable = true}, SHIFT(1912), - [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 = false}, SHIFT(1926), - [4431] = {.count = 1, .reusable = true}, SHIFT(1926), - [4433] = {.count = 1, .reusable = true}, SHIFT(1927), - [4435] = {.count = 1, .reusable = false}, SHIFT(1928), - [4437] = {.count = 1, .reusable = true}, SHIFT(1928), - [4439] = {.count = 1, .reusable = true}, SHIFT(1929), - [4441] = {.count = 1, .reusable = false}, SHIFT(1930), - [4443] = {.count = 1, .reusable = true}, SHIFT(1930), - [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 = true}, SHIFT(1940), - [4463] = {.count = 1, .reusable = false}, SHIFT(1941), - [4465] = {.count = 1, .reusable = false}, SHIFT(1940), - [4467] = {.count = 1, .reusable = true}, SHIFT(1943), - [4469] = {.count = 1, .reusable = false}, SHIFT(1945), - [4471] = {.count = 1, .reusable = true}, SHIFT(1945), - [4473] = {.count = 1, .reusable = true}, SHIFT(1944), - [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 = false}, SHIFT(1966), - [4515] = {.count = 1, .reusable = true}, SHIFT(1966), - [4517] = {.count = 1, .reusable = true}, SHIFT(1967), - [4519] = {.count = 1, .reusable = false}, SHIFT(1968), - [4521] = {.count = 1, .reusable = true}, SHIFT(1968), - [4523] = {.count = 1, .reusable = true}, SHIFT(1969), - [4525] = {.count = 1, .reusable = false}, SHIFT(1970), - [4527] = {.count = 1, .reusable = true}, SHIFT(1970), - [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 = false}, SHIFT(1977), - [4543] = {.count = 1, .reusable = true}, SHIFT(1977), - [4545] = {.count = 1, .reusable = true}, SHIFT(1978), - [4547] = {.count = 1, .reusable = false}, SHIFT(1979), - [4549] = {.count = 1, .reusable = true}, SHIFT(1979), - [4551] = {.count = 1, .reusable = true}, SHIFT(1980), - [4553] = {.count = 1, .reusable = false}, SHIFT(1981), - [4555] = {.count = 1, .reusable = true}, SHIFT(1981), - [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 = false}, SHIFT(1988), - [4571] = {.count = 1, .reusable = true}, SHIFT(1988), - [4573] = {.count = 1, .reusable = true}, SHIFT(1989), - [4575] = {.count = 1, .reusable = false}, SHIFT(1990), - [4577] = {.count = 1, .reusable = true}, SHIFT(1990), - [4579] = {.count = 1, .reusable = true}, SHIFT(1991), - [4581] = {.count = 1, .reusable = false}, SHIFT(1992), - [4583] = {.count = 1, .reusable = true}, SHIFT(1992), - [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 = false}, SHIFT(1999), - [4599] = {.count = 1, .reusable = true}, SHIFT(1999), - [4601] = {.count = 1, .reusable = true}, SHIFT(2000), - [4603] = {.count = 1, .reusable = false}, SHIFT(2001), - [4605] = {.count = 1, .reusable = true}, SHIFT(2001), - [4607] = {.count = 1, .reusable = true}, SHIFT(2002), - [4609] = {.count = 1, .reusable = false}, SHIFT(2003), - [4611] = {.count = 1, .reusable = true}, SHIFT(2003), - [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 = false}, SHIFT(2010), - [4627] = {.count = 1, .reusable = true}, SHIFT(2010), - [4629] = {.count = 1, .reusable = true}, SHIFT(2011), - [4631] = {.count = 1, .reusable = false}, SHIFT(2012), - [4633] = {.count = 1, .reusable = true}, SHIFT(2012), - [4635] = {.count = 1, .reusable = true}, SHIFT(2013), - [4637] = {.count = 1, .reusable = false}, SHIFT(2014), - [4639] = {.count = 1, .reusable = true}, SHIFT(2014), - [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 = false}, SHIFT(2028), - [4672] = {.count = 1, .reusable = true}, SHIFT(2028), - [4674] = {.count = 1, .reusable = true}, SHIFT(2027), - [4676] = {.count = 1, .reusable = true}, SHIFT(2029), - [4678] = {.count = 1, .reusable = false}, SHIFT(2031), - [4680] = {.count = 1, .reusable = true}, SHIFT(2031), - [4682] = {.count = 1, .reusable = true}, SHIFT(2030), - [4684] = {.count = 1, .reusable = false}, SHIFT(2033), - [4686] = {.count = 1, .reusable = true}, SHIFT(2033), - [4688] = {.count = 1, .reusable = true}, SHIFT(2032), - [4690] = {.count = 1, .reusable = true}, SHIFT(2034), - [4692] = {.count = 1, .reusable = true}, SHIFT(2035), - [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}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [4722] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [4724] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [4726] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [4728] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [4730] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [4732] = {.count = 1, .reusable = true}, SHIFT(2044), - [4734] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [4736] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [4738] = {.count = 1, .reusable = true}, SHIFT(2045), - [4740] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [4742] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [4744] = {.count = 1, .reusable = true}, SHIFT(2046), - [4746] = {.count = 1, .reusable = true}, SHIFT(2047), - [4748] = {.count = 1, .reusable = true}, SHIFT(2048), - [4750] = {.count = 1, .reusable = false}, SHIFT(2049), - [4752] = {.count = 1, .reusable = true}, SHIFT(2050), - [4754] = {.count = 1, .reusable = true}, SHIFT(2052), - [4756] = {.count = 1, .reusable = true}, SHIFT(2053), - [4758] = {.count = 1, .reusable = true}, SHIFT(2054), - [4760] = {.count = 1, .reusable = true}, SHIFT(2055), - [4762] = {.count = 1, .reusable = true}, SHIFT(2056), - [4764] = {.count = 1, .reusable = true}, SHIFT(2057), - [4766] = {.count = 1, .reusable = false}, SHIFT(2058), - [4768] = {.count = 1, .reusable = true}, SHIFT(2058), - [4770] = {.count = 1, .reusable = true}, SHIFT(2059), - [4772] = {.count = 1, .reusable = false}, SHIFT(2060), - [4774] = {.count = 1, .reusable = true}, SHIFT(2060), - [4776] = {.count = 1, .reusable = true}, SHIFT(2061), - [4778] = {.count = 1, .reusable = false}, SHIFT(2062), - [4780] = {.count = 1, .reusable = true}, SHIFT(2062), - [4782] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [4784] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [4786] = {.count = 1, .reusable = true}, SHIFT(2063), - [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 = false}, SHIFT(2073), - [4821] = {.count = 1, .reusable = true}, SHIFT(2074), - [4823] = {.count = 1, .reusable = true}, SHIFT(2076), - [4825] = {.count = 1, .reusable = true}, SHIFT(2077), - [4827] = {.count = 1, .reusable = true}, SHIFT(2078), - [4829] = {.count = 1, .reusable = true}, SHIFT(2079), - [4831] = {.count = 1, .reusable = true}, SHIFT(2080), - [4833] = {.count = 1, .reusable = true}, SHIFT(2081), - [4835] = {.count = 1, .reusable = false}, SHIFT(2082), - [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 = false}, SHIFT(2089), - [4857] = {.count = 1, .reusable = true}, SHIFT(2090), - [4859] = {.count = 1, .reusable = true}, SHIFT(2092), - [4861] = {.count = 1, .reusable = true}, SHIFT(2093), - [4863] = {.count = 1, .reusable = true}, SHIFT(2094), - [4865] = {.count = 1, .reusable = true}, SHIFT(2095), - [4867] = {.count = 1, .reusable = true}, SHIFT(2096), - [4869] = {.count = 1, .reusable = true}, SHIFT(2097), - [4871] = {.count = 1, .reusable = false}, SHIFT(2098), - [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 = false}, SHIFT(2108), - [4899] = {.count = 1, .reusable = true}, SHIFT(2108), - [4901] = {.count = 1, .reusable = true}, SHIFT(2109), - [4903] = {.count = 1, .reusable = false}, SHIFT(2110), - [4905] = {.count = 1, .reusable = true}, SHIFT(2110), - [4907] = {.count = 1, .reusable = true}, SHIFT(2111), - [4909] = {.count = 1, .reusable = false}, SHIFT(2112), - [4911] = {.count = 1, .reusable = true}, SHIFT(2112), - [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 = false}, SHIFT(2125), - [4938] = {.count = 1, .reusable = true}, SHIFT(2125), - [4940] = {.count = 1, .reusable = true}, SHIFT(2124), - [4942] = {.count = 1, .reusable = true}, SHIFT(2126), - [4944] = {.count = 1, .reusable = false}, SHIFT(2128), - [4946] = {.count = 1, .reusable = true}, SHIFT(2128), - [4948] = {.count = 1, .reusable = true}, SHIFT(2127), - [4950] = {.count = 1, .reusable = false}, SHIFT(2130), - [4952] = {.count = 1, .reusable = true}, SHIFT(2130), - [4954] = {.count = 1, .reusable = true}, SHIFT(2129), - [4956] = {.count = 1, .reusable = true}, SHIFT(2131), - [4958] = {.count = 1, .reusable = true}, SHIFT(2132), - [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 = false}, SHIFT(2145), - [4998] = {.count = 1, .reusable = true}, SHIFT(2145), - [5000] = {.count = 1, .reusable = true}, SHIFT(2146), - [5002] = {.count = 1, .reusable = false}, SHIFT(2147), - [5004] = {.count = 1, .reusable = true}, SHIFT(2147), - [5006] = {.count = 1, .reusable = true}, SHIFT(2148), - [5008] = {.count = 1, .reusable = false}, SHIFT(2149), - [5010] = {.count = 1, .reusable = true}, SHIFT(2149), - [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 = false}, SHIFT(2227), - [5160] = {.count = 1, .reusable = true}, SHIFT(2227), - [5162] = {.count = 1, .reusable = true}, SHIFT(2226), - [5164] = {.count = 1, .reusable = true}, SHIFT(2228), - [5166] = {.count = 1, .reusable = false}, SHIFT(2230), - [5168] = {.count = 1, .reusable = true}, SHIFT(2230), - [5170] = {.count = 1, .reusable = true}, SHIFT(2229), - [5172] = {.count = 1, .reusable = false}, SHIFT(2232), - [5174] = {.count = 1, .reusable = true}, SHIFT(2232), - [5176] = {.count = 1, .reusable = true}, SHIFT(2231), - [5178] = {.count = 1, .reusable = true}, SHIFT(2233), - [5180] = {.count = 1, .reusable = true}, SHIFT(2234), - [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 = false}, SHIFT(2260), - [5248] = {.count = 1, .reusable = true}, SHIFT(2261), - [5250] = {.count = 1, .reusable = true}, SHIFT(2263), - [5252] = {.count = 1, .reusable = true}, SHIFT(2264), - [5254] = {.count = 1, .reusable = true}, SHIFT(2265), - [5256] = {.count = 1, .reusable = true}, SHIFT(2266), - [5258] = {.count = 1, .reusable = true}, SHIFT(2267), - [5260] = {.count = 1, .reusable = true}, SHIFT(2268), - [5262] = {.count = 1, .reusable = false}, SHIFT(2269), - [5264] = {.count = 1, .reusable = true}, SHIFT(2269), - [5266] = {.count = 1, .reusable = true}, SHIFT(2270), - [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}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [5284] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [5286] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [5288] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [5290] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [5292] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [5294] = {.count = 1, .reusable = true}, SHIFT(2276), - [5296] = {.count = 1, .reusable = true}, SHIFT(2277), - [5298] = {.count = 1, .reusable = true}, SHIFT(2278), - [5300] = {.count = 1, .reusable = false}, SHIFT(2279), - [5302] = {.count = 1, .reusable = true}, SHIFT(2279), - [5304] = {.count = 1, .reusable = true}, SHIFT(2280), - [5306] = {.count = 1, .reusable = false}, SHIFT(2281), - [5308] = {.count = 1, .reusable = true}, SHIFT(2281), - [5310] = {.count = 1, .reusable = true}, SHIFT(2282), - [5312] = {.count = 1, .reusable = false}, SHIFT(2283), - [5314] = {.count = 1, .reusable = true}, SHIFT(2283), - [5316] = {.count = 1, .reusable = true}, SHIFT(2284), - [5318] = {.count = 1, .reusable = true}, SHIFT(2285), - [5320] = {.count = 1, .reusable = true}, SHIFT(2286), - [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 = false}, SHIFT(2292), - [5330] = {.count = 1, .reusable = true}, SHIFT(2292), - [5332] = {.count = 1, .reusable = true}, SHIFT(2293), - [5334] = {.count = 1, .reusable = false}, SHIFT(2294), - [5336] = {.count = 1, .reusable = true}, SHIFT(2294), - [5338] = {.count = 1, .reusable = true}, SHIFT(2295), - [5340] = {.count = 1, .reusable = false}, SHIFT(2296), - [5342] = {.count = 1, .reusable = true}, SHIFT(2296), - [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 = false}, SHIFT(2303), - [5358] = {.count = 1, .reusable = true}, SHIFT(2303), - [5360] = {.count = 1, .reusable = true}, SHIFT(2304), - [5362] = {.count = 1, .reusable = false}, SHIFT(2305), - [5364] = {.count = 1, .reusable = true}, SHIFT(2305), - [5366] = {.count = 1, .reusable = true}, SHIFT(2306), - [5368] = {.count = 1, .reusable = false}, SHIFT(2307), - [5370] = {.count = 1, .reusable = true}, SHIFT(2307), - [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 = false}, SHIFT(2316), - [5390] = {.count = 1, .reusable = true}, SHIFT(2317), - [5392] = {.count = 1, .reusable = true}, SHIFT(2319), - [5394] = {.count = 1, .reusable = true}, SHIFT(2320), - [5396] = {.count = 1, .reusable = true}, SHIFT(2321), - [5398] = {.count = 1, .reusable = true}, SHIFT(2322), - [5400] = {.count = 1, .reusable = true}, SHIFT(2323), - [5402] = {.count = 1, .reusable = true}, SHIFT(2324), - [5404] = {.count = 1, .reusable = false}, SHIFT(2325), - [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(2353), - [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(2376), - [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), + [2272] = {.count = 1, .reusable = true}, SHIFT(578), + [2274] = {.count = 1, .reusable = true}, SHIFT(579), + [2276] = {.count = 1, .reusable = false}, SHIFT(1072), + [2278] = {.count = 1, .reusable = true}, SHIFT(1073), + [2280] = {.count = 1, .reusable = true}, SHIFT(1074), + [2282] = {.count = 1, .reusable = false}, SHIFT(1074), + [2284] = {.count = 1, .reusable = true}, SHIFT(1078), + [2286] = {.count = 1, .reusable = false}, SHIFT(1078), + [2288] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(215), + [2291] = {.count = 1, .reusable = false}, SHIFT(1079), + [2293] = {.count = 1, .reusable = false}, SHIFT(1080), + [2295] = {.count = 1, .reusable = true}, SHIFT(1083), + [2297] = {.count = 1, .reusable = false}, SHIFT(1083), + [2299] = {.count = 1, .reusable = true}, SHIFT(1084), + [2301] = {.count = 1, .reusable = false}, SHIFT(1085), + [2303] = {.count = 1, .reusable = true}, SHIFT(1086), + [2305] = {.count = 1, .reusable = true}, SHIFT(1088), + [2307] = {.count = 1, .reusable = true}, SHIFT(1089), + [2309] = {.count = 1, .reusable = false}, SHIFT(1091), + [2311] = {.count = 1, .reusable = true}, SHIFT(1091), + [2313] = {.count = 1, .reusable = true}, SHIFT(1090), + [2315] = {.count = 1, .reusable = true}, SHIFT(1092), + [2317] = {.count = 1, .reusable = false}, SHIFT(1094), + [2319] = {.count = 1, .reusable = true}, SHIFT(1094), + [2321] = {.count = 1, .reusable = true}, SHIFT(1093), + [2323] = {.count = 1, .reusable = false}, SHIFT(1096), + [2325] = {.count = 1, .reusable = true}, SHIFT(1096), + [2327] = {.count = 1, .reusable = true}, SHIFT(1095), + [2329] = {.count = 1, .reusable = true}, SHIFT(1097), + [2331] = {.count = 1, .reusable = true}, SHIFT(1098), + [2333] = {.count = 1, .reusable = true}, SHIFT(1099), + [2335] = {.count = 1, .reusable = true}, SHIFT(1100), + [2337] = {.count = 1, .reusable = true}, SHIFT(1101), + [2339] = {.count = 1, .reusable = true}, SHIFT(1102), + [2341] = {.count = 1, .reusable = true}, SHIFT(1103), + [2343] = {.count = 1, .reusable = false}, SHIFT(1103), + [2345] = {.count = 1, .reusable = true}, SHIFT(1104), + [2347] = {.count = 1, .reusable = false}, SHIFT(1104), + [2349] = {.count = 1, .reusable = true}, SHIFT(1105), + [2351] = {.count = 1, .reusable = true}, SHIFT(1106), + [2353] = {.count = 1, .reusable = false}, SHIFT(1106), + [2355] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [2357] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [2359] = {.count = 1, .reusable = true}, SHIFT(1108), + [2361] = {.count = 1, .reusable = false}, SHIFT(1108), + [2363] = {.count = 1, .reusable = true}, SHIFT(1109), + [2365] = {.count = 1, .reusable = false}, SHIFT(1111), + [2367] = {.count = 1, .reusable = true}, SHIFT(1111), + [2369] = {.count = 1, .reusable = true}, SHIFT(1112), + [2371] = {.count = 1, .reusable = true}, SHIFT(1113), + [2373] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [2375] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [2377] = {.count = 1, .reusable = true}, SHIFT(1117), + [2379] = {.count = 1, .reusable = true}, SHIFT(1118), + [2381] = {.count = 1, .reusable = false}, SHIFT(1119), + [2383] = {.count = 1, .reusable = true}, SHIFT(1119), + [2385] = {.count = 1, .reusable = true}, SHIFT(1120), + [2387] = {.count = 1, .reusable = false}, SHIFT(1121), + [2389] = {.count = 1, .reusable = true}, SHIFT(1121), + [2391] = {.count = 1, .reusable = true}, SHIFT(1122), + [2393] = {.count = 1, .reusable = true}, SHIFT(1124), + [2395] = {.count = 1, .reusable = true}, SHIFT(1125), + [2397] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(249), + [2400] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(250), + [2403] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(251), + [2406] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(251), + [2409] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(254), + [2412] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(255), + [2415] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(255), + [2418] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), + [2420] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), + [2422] = {.count = 1, .reusable = true}, SHIFT(1129), + [2424] = {.count = 1, .reusable = true}, SHIFT(1130), + [2426] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(263), + [2429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(265), + [2432] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(265), + [2435] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(266), + [2438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(264), + [2441] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(267), + [2444] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(268), + [2447] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(268), + [2450] = {.count = 1, .reusable = true}, SHIFT(1132), + [2452] = {.count = 1, .reusable = true}, SHIFT(1134), + [2454] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2456] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2458] = {.count = 1, .reusable = false}, SHIFT(277), + [2460] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(281), + [2463] = {.count = 1, .reusable = false}, SHIFT(1137), + [2465] = {.count = 1, .reusable = true}, SHIFT(1138), + [2467] = {.count = 1, .reusable = false}, SHIFT(1139), + [2469] = {.count = 1, .reusable = true}, SHIFT(1140), + [2471] = {.count = 1, .reusable = true}, SHIFT(1142), + [2473] = {.count = 1, .reusable = true}, SHIFT(1143), + [2475] = {.count = 1, .reusable = false}, SHIFT(1145), + [2477] = {.count = 1, .reusable = true}, SHIFT(1145), + [2479] = {.count = 1, .reusable = true}, SHIFT(1144), + [2481] = {.count = 1, .reusable = true}, SHIFT(1146), + [2483] = {.count = 1, .reusable = false}, SHIFT(1148), + [2485] = {.count = 1, .reusable = true}, SHIFT(1148), + [2487] = {.count = 1, .reusable = true}, SHIFT(1147), + [2489] = {.count = 1, .reusable = false}, SHIFT(1150), + [2491] = {.count = 1, .reusable = true}, SHIFT(1150), + [2493] = {.count = 1, .reusable = true}, SHIFT(1149), + [2495] = {.count = 1, .reusable = true}, SHIFT(1151), + [2497] = {.count = 1, .reusable = true}, SHIFT(1152), + [2499] = {.count = 1, .reusable = true}, SHIFT(1153), + [2501] = {.count = 1, .reusable = true}, SHIFT(1154), + [2503] = {.count = 1, .reusable = true}, SHIFT(1155), + [2505] = {.count = 1, .reusable = true}, SHIFT(1156), + [2507] = {.count = 1, .reusable = true}, SHIFT(1157), + [2509] = {.count = 1, .reusable = false}, SHIFT(1157), + [2511] = {.count = 1, .reusable = true}, SHIFT(1158), + [2513] = {.count = 1, .reusable = false}, SHIFT(1158), + [2515] = {.count = 1, .reusable = true}, SHIFT(1159), + [2517] = {.count = 1, .reusable = true}, SHIFT(1160), + [2519] = {.count = 1, .reusable = false}, SHIFT(1160), + [2521] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [2523] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [2525] = {.count = 1, .reusable = false}, SHIFT(1161), + [2527] = {.count = 1, .reusable = true}, SHIFT(1161), + [2529] = {.count = 1, .reusable = true}, SHIFT(1162), + [2531] = {.count = 1, .reusable = true}, SHIFT(1163), + [2533] = {.count = 1, .reusable = false}, SHIFT(1164), + [2535] = {.count = 1, .reusable = true}, SHIFT(1165), + [2537] = {.count = 1, .reusable = true}, SHIFT(1166), + [2539] = {.count = 1, .reusable = true}, SHIFT(1167), + [2541] = {.count = 1, .reusable = true}, SHIFT(1168), + [2543] = {.count = 1, .reusable = true}, SHIFT(1169), + [2545] = {.count = 1, .reusable = true}, SHIFT(1171), + [2547] = {.count = 1, .reusable = true}, SHIFT(1172), + [2549] = {.count = 1, .reusable = true}, SHIFT(1173), + [2551] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), + [2553] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), + [2555] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(308), + [2558] = {.count = 1, .reusable = false}, SHIFT(1176), + [2560] = {.count = 1, .reusable = true}, SHIFT(1177), + [2562] = {.count = 1, .reusable = false}, SHIFT(1178), + [2564] = {.count = 1, .reusable = true}, SHIFT(1179), + [2566] = {.count = 1, .reusable = true}, SHIFT(1181), + [2568] = {.count = 1, .reusable = true}, SHIFT(1182), + [2570] = {.count = 1, .reusable = false}, SHIFT(1184), + [2572] = {.count = 1, .reusable = true}, SHIFT(1184), + [2574] = {.count = 1, .reusable = true}, SHIFT(1183), + [2576] = {.count = 1, .reusable = true}, SHIFT(1185), + [2578] = {.count = 1, .reusable = false}, SHIFT(1187), + [2580] = {.count = 1, .reusable = true}, SHIFT(1187), + [2582] = {.count = 1, .reusable = true}, SHIFT(1186), + [2584] = {.count = 1, .reusable = false}, SHIFT(1189), + [2586] = {.count = 1, .reusable = true}, SHIFT(1189), + [2588] = {.count = 1, .reusable = true}, SHIFT(1188), + [2590] = {.count = 1, .reusable = true}, SHIFT(1190), + [2592] = {.count = 1, .reusable = true}, SHIFT(1191), + [2594] = {.count = 1, .reusable = true}, SHIFT(1192), + [2596] = {.count = 1, .reusable = true}, SHIFT(1193), + [2598] = {.count = 1, .reusable = true}, SHIFT(1194), + [2600] = {.count = 1, .reusable = true}, SHIFT(1195), + [2602] = {.count = 1, .reusable = true}, SHIFT(1196), + [2604] = {.count = 1, .reusable = false}, SHIFT(1196), + [2606] = {.count = 1, .reusable = true}, SHIFT(1197), + [2608] = {.count = 1, .reusable = false}, SHIFT(1197), + [2610] = {.count = 1, .reusable = true}, SHIFT(1198), + [2612] = {.count = 1, .reusable = true}, SHIFT(1199), + [2614] = {.count = 1, .reusable = false}, SHIFT(1199), + [2616] = {.count = 1, .reusable = true}, SHIFT(1200), + [2618] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(333), + [2621] = {.count = 1, .reusable = false}, SHIFT(1202), + [2623] = {.count = 1, .reusable = true}, SHIFT(1203), + [2625] = {.count = 1, .reusable = false}, SHIFT(1204), + [2627] = {.count = 1, .reusable = true}, SHIFT(1205), + [2629] = {.count = 1, .reusable = true}, SHIFT(1207), + [2631] = {.count = 1, .reusable = true}, SHIFT(1208), + [2633] = {.count = 1, .reusable = false}, SHIFT(1210), + [2635] = {.count = 1, .reusable = true}, SHIFT(1210), + [2637] = {.count = 1, .reusable = true}, SHIFT(1209), + [2639] = {.count = 1, .reusable = true}, SHIFT(1211), + [2641] = {.count = 1, .reusable = false}, SHIFT(1213), + [2643] = {.count = 1, .reusable = true}, SHIFT(1213), + [2645] = {.count = 1, .reusable = true}, SHIFT(1212), + [2647] = {.count = 1, .reusable = false}, SHIFT(1215), + [2649] = {.count = 1, .reusable = true}, SHIFT(1215), + [2651] = {.count = 1, .reusable = true}, SHIFT(1214), + [2653] = {.count = 1, .reusable = true}, SHIFT(1216), + [2655] = {.count = 1, .reusable = true}, SHIFT(1217), + [2657] = {.count = 1, .reusable = true}, SHIFT(1218), + [2659] = {.count = 1, .reusable = true}, SHIFT(1219), + [2661] = {.count = 1, .reusable = true}, SHIFT(1220), + [2663] = {.count = 1, .reusable = true}, SHIFT(1221), + [2665] = {.count = 1, .reusable = true}, SHIFT(1222), + [2667] = {.count = 1, .reusable = false}, SHIFT(1222), + [2669] = {.count = 1, .reusable = true}, SHIFT(1223), + [2671] = {.count = 1, .reusable = false}, SHIFT(1223), + [2673] = {.count = 1, .reusable = true}, SHIFT(1224), + [2675] = {.count = 1, .reusable = true}, SHIFT(1225), + [2677] = {.count = 1, .reusable = false}, SHIFT(1225), + [2679] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(356), + [2682] = {.count = 1, .reusable = false}, SHIFT(1226), + [2684] = {.count = 1, .reusable = true}, SHIFT(1227), + [2686] = {.count = 1, .reusable = false}, SHIFT(1228), + [2688] = {.count = 1, .reusable = true}, SHIFT(1229), + [2690] = {.count = 1, .reusable = true}, SHIFT(1231), + [2692] = {.count = 1, .reusable = true}, SHIFT(1232), + [2694] = {.count = 1, .reusable = false}, SHIFT(1234), + [2696] = {.count = 1, .reusable = true}, SHIFT(1234), + [2698] = {.count = 1, .reusable = true}, SHIFT(1233), + [2700] = {.count = 1, .reusable = true}, SHIFT(1235), + [2702] = {.count = 1, .reusable = false}, SHIFT(1237), + [2704] = {.count = 1, .reusable = true}, SHIFT(1237), + [2706] = {.count = 1, .reusable = true}, SHIFT(1236), + [2708] = {.count = 1, .reusable = false}, SHIFT(1239), + [2710] = {.count = 1, .reusable = true}, SHIFT(1239), + [2712] = {.count = 1, .reusable = true}, SHIFT(1238), + [2714] = {.count = 1, .reusable = true}, SHIFT(1240), + [2716] = {.count = 1, .reusable = true}, SHIFT(1241), + [2718] = {.count = 1, .reusable = true}, SHIFT(1242), + [2720] = {.count = 1, .reusable = true}, SHIFT(1243), + [2722] = {.count = 1, .reusable = true}, SHIFT(1244), + [2724] = {.count = 1, .reusable = true}, SHIFT(1245), + [2726] = {.count = 1, .reusable = true}, SHIFT(1246), + [2728] = {.count = 1, .reusable = false}, SHIFT(1246), + [2730] = {.count = 1, .reusable = true}, SHIFT(1247), + [2732] = {.count = 1, .reusable = false}, SHIFT(1247), + [2734] = {.count = 1, .reusable = true}, SHIFT(1248), + [2736] = {.count = 1, .reusable = true}, SHIFT(1249), + [2738] = {.count = 1, .reusable = false}, SHIFT(1249), + [2740] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(379), + [2743] = {.count = 1, .reusable = false}, SHIFT(1250), + [2745] = {.count = 1, .reusable = true}, SHIFT(1251), + [2747] = {.count = 1, .reusable = false}, SHIFT(1252), + [2749] = {.count = 1, .reusable = true}, SHIFT(1253), + [2751] = {.count = 1, .reusable = true}, SHIFT(1255), + [2753] = {.count = 1, .reusable = true}, SHIFT(1256), + [2755] = {.count = 1, .reusable = false}, SHIFT(1258), + [2757] = {.count = 1, .reusable = true}, SHIFT(1258), + [2759] = {.count = 1, .reusable = true}, SHIFT(1257), + [2761] = {.count = 1, .reusable = true}, SHIFT(1259), + [2763] = {.count = 1, .reusable = false}, SHIFT(1261), + [2765] = {.count = 1, .reusable = true}, SHIFT(1261), + [2767] = {.count = 1, .reusable = true}, SHIFT(1260), + [2769] = {.count = 1, .reusable = false}, SHIFT(1263), + [2771] = {.count = 1, .reusable = true}, SHIFT(1263), + [2773] = {.count = 1, .reusable = true}, SHIFT(1262), + [2775] = {.count = 1, .reusable = true}, SHIFT(1264), + [2777] = {.count = 1, .reusable = true}, SHIFT(1265), + [2779] = {.count = 1, .reusable = true}, SHIFT(1266), + [2781] = {.count = 1, .reusable = true}, SHIFT(1267), + [2783] = {.count = 1, .reusable = true}, SHIFT(1268), + [2785] = {.count = 1, .reusable = true}, SHIFT(1269), + [2787] = {.count = 1, .reusable = true}, SHIFT(1270), + [2789] = {.count = 1, .reusable = false}, SHIFT(1270), + [2791] = {.count = 1, .reusable = true}, SHIFT(1271), + [2793] = {.count = 1, .reusable = false}, SHIFT(1271), + [2795] = {.count = 1, .reusable = true}, SHIFT(1272), + [2797] = {.count = 1, .reusable = true}, SHIFT(1273), + [2799] = {.count = 1, .reusable = false}, SHIFT(1273), + [2801] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [2803] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), + [2805] = {.count = 1, .reusable = true}, SHIFT(1274), + [2807] = {.count = 1, .reusable = false}, SHIFT(1275), + [2809] = {.count = 1, .reusable = true}, SHIFT(1276), + [2811] = {.count = 1, .reusable = true}, SHIFT(1278), + [2813] = {.count = 1, .reusable = true}, SHIFT(1279), + [2815] = {.count = 1, .reusable = false}, SHIFT(1281), + [2817] = {.count = 1, .reusable = true}, SHIFT(1281), + [2819] = {.count = 1, .reusable = true}, SHIFT(1280), + [2821] = {.count = 1, .reusable = true}, SHIFT(1282), + [2823] = {.count = 1, .reusable = false}, SHIFT(1284), + [2825] = {.count = 1, .reusable = true}, SHIFT(1284), + [2827] = {.count = 1, .reusable = true}, SHIFT(1283), + [2829] = {.count = 1, .reusable = false}, SHIFT(1286), + [2831] = {.count = 1, .reusable = true}, SHIFT(1286), + [2833] = {.count = 1, .reusable = true}, SHIFT(1285), + [2835] = {.count = 1, .reusable = true}, SHIFT(1287), + [2837] = {.count = 1, .reusable = true}, SHIFT(1288), + [2839] = {.count = 1, .reusable = true}, SHIFT(1289), + [2841] = {.count = 1, .reusable = true}, SHIFT(1290), + [2843] = {.count = 1, .reusable = true}, SHIFT(1291), + [2845] = {.count = 1, .reusable = true}, SHIFT(1292), + [2847] = {.count = 1, .reusable = true}, SHIFT(1293), + [2849] = {.count = 1, .reusable = false}, SHIFT(1293), + [2851] = {.count = 1, .reusable = true}, SHIFT(1294), + [2853] = {.count = 1, .reusable = false}, SHIFT(1294), + [2855] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [2857] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [2859] = {.count = 1, .reusable = true}, SHIFT(1295), + [2861] = {.count = 1, .reusable = true}, SHIFT(1296), + [2863] = {.count = 1, .reusable = true}, SHIFT(1297), + [2865] = {.count = 1, .reusable = true}, SHIFT(1298), + [2867] = {.count = 1, .reusable = true}, SHIFT(1299), + [2869] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [2871] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [2873] = {.count = 1, .reusable = true}, SHIFT(1300), + [2875] = {.count = 1, .reusable = true}, SHIFT(1301), + [2877] = {.count = 1, .reusable = false}, SHIFT(1303), + [2879] = {.count = 1, .reusable = false}, SHIFT(1304), + [2881] = {.count = 1, .reusable = true}, SHIFT(1306), + [2883] = {.count = 1, .reusable = true}, SHIFT(1307), + [2885] = {.count = 1, .reusable = false}, SHIFT(1308), + [2887] = {.count = 1, .reusable = false}, SHIFT(1306), + [2889] = {.count = 1, .reusable = true}, SHIFT(1309), + [2891] = {.count = 1, .reusable = true}, SHIFT(1310), + [2893] = {.count = 1, .reusable = true}, SHIFT(1311), + [2895] = {.count = 1, .reusable = true}, SHIFT(1312), + [2897] = {.count = 1, .reusable = false}, SHIFT(1313), + [2899] = {.count = 1, .reusable = false}, SHIFT(1312), + [2901] = {.count = 1, .reusable = false}, SHIFT(1324), + [2903] = {.count = 1, .reusable = true}, SHIFT(1325), + [2905] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2907] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2909] = {.count = 1, .reusable = true}, SHIFT(1327), + [2911] = {.count = 1, .reusable = true}, SHIFT(1328), + [2913] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2915] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2917] = {.count = 1, .reusable = true}, SHIFT(1329), + [2919] = {.count = 1, .reusable = true}, SHIFT(1330), + [2921] = {.count = 1, .reusable = true}, SHIFT(1331), + [2923] = {.count = 1, .reusable = true}, SHIFT(1332), + [2925] = {.count = 1, .reusable = false}, SHIFT(1334), + [2927] = {.count = 1, .reusable = false}, SHIFT(1335), + [2929] = {.count = 1, .reusable = true}, SHIFT(1336), + [2931] = {.count = 1, .reusable = true}, SHIFT(1337), + [2933] = {.count = 1, .reusable = true}, SHIFT(1338), + [2935] = {.count = 1, .reusable = false}, SHIFT(1339), + [2937] = {.count = 1, .reusable = false}, SHIFT(1338), + [2939] = {.count = 1, .reusable = true}, SHIFT(1341), + [2941] = {.count = 1, .reusable = false}, SHIFT(1343), + [2943] = {.count = 1, .reusable = true}, SHIFT(1343), + [2945] = {.count = 1, .reusable = true}, SHIFT(1342), + [2947] = {.count = 1, .reusable = true}, SHIFT(1344), + [2949] = {.count = 1, .reusable = false}, SHIFT(1346), + [2951] = {.count = 1, .reusable = true}, SHIFT(1346), + [2953] = {.count = 1, .reusable = true}, SHIFT(1345), + [2955] = {.count = 1, .reusable = true}, SHIFT(1347), + [2957] = {.count = 1, .reusable = false}, SHIFT(1349), + [2959] = {.count = 1, .reusable = true}, SHIFT(1349), + [2961] = {.count = 1, .reusable = true}, SHIFT(1348), + [2963] = {.count = 1, .reusable = true}, SHIFT(1350), + [2965] = {.count = 1, .reusable = false}, SHIFT(1351), + [2967] = {.count = 1, .reusable = true}, SHIFT(1351), + [2969] = {.count = 1, .reusable = true}, SHIFT(1352), + [2971] = {.count = 1, .reusable = true}, SHIFT(1353), + [2973] = {.count = 1, .reusable = false}, SHIFT(1353), + [2975] = {.count = 1, .reusable = true}, SHIFT(1356), + [2977] = {.count = 1, .reusable = false}, SHIFT(1356), + [2979] = {.count = 1, .reusable = true}, SHIFT(1359), + [2981] = {.count = 1, .reusable = true}, SHIFT(1360), + [2983] = {.count = 1, .reusable = false}, SHIFT(1360), + [2985] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2987] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2989] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [2991] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(891), + [2994] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(428), + [2997] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(429), + [3000] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(430), + [3003] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(431), + [3006] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(891), + [3009] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(432), + [3012] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(434), + [3015] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(435), + [3018] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(436), + [3021] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(431), + [3024] = {.count = 1, .reusable = true}, SHIFT(1363), + [3026] = {.count = 1, .reusable = false}, SHIFT(1364), + [3028] = {.count = 1, .reusable = true}, SHIFT(1364), + [3030] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3032] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3034] = {.count = 1, .reusable = true}, SHIFT(1365), + [3036] = {.count = 1, .reusable = false}, SHIFT(1366), + [3038] = {.count = 1, .reusable = true}, SHIFT(1366), + [3040] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 4), + [3042] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 4), + [3044] = {.count = 1, .reusable = true}, SHIFT(1367), + [3046] = {.count = 1, .reusable = true}, SHIFT(1369), + [3048] = {.count = 1, .reusable = true}, SHIFT(1370), + [3050] = {.count = 1, .reusable = false}, SHIFT(1371), + [3052] = {.count = 1, .reusable = true}, SHIFT(1371), + [3054] = {.count = 1, .reusable = true}, SHIFT(1372), + [3056] = {.count = 1, .reusable = false}, SHIFT(1373), + [3058] = {.count = 1, .reusable = true}, SHIFT(1373), + [3060] = {.count = 1, .reusable = true}, SHIFT(1374), + [3062] = {.count = 1, .reusable = true}, SHIFT(1377), + [3064] = {.count = 1, .reusable = true}, SHIFT(1378), + [3066] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(458), + [3069] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(459), + [3072] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(459), + [3075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(460), + [3078] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 4), + [3080] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 4), + [3082] = {.count = 1, .reusable = true}, SHIFT(1381), + [3084] = {.count = 1, .reusable = true}, SHIFT(1383), + [3086] = {.count = 1, .reusable = true}, SHIFT(1384), + [3088] = {.count = 1, .reusable = true}, SHIFT(1385), + [3090] = {.count = 1, .reusable = false}, SHIFT(1386), + [3092] = {.count = 1, .reusable = false}, SHIFT(1385), + [3094] = {.count = 1, .reusable = true}, SHIFT(1388), + [3096] = {.count = 1, .reusable = false}, SHIFT(1390), + [3098] = {.count = 1, .reusable = true}, SHIFT(1390), + [3100] = {.count = 1, .reusable = true}, SHIFT(1389), + [3102] = {.count = 1, .reusable = true}, SHIFT(1391), + [3104] = {.count = 1, .reusable = false}, SHIFT(1393), + [3106] = {.count = 1, .reusable = true}, SHIFT(1393), + [3108] = {.count = 1, .reusable = true}, SHIFT(1392), + [3110] = {.count = 1, .reusable = true}, SHIFT(1394), + [3112] = {.count = 1, .reusable = false}, SHIFT(1396), + [3114] = {.count = 1, .reusable = true}, SHIFT(1396), + [3116] = {.count = 1, .reusable = true}, SHIFT(1395), + [3118] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [3120] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [3122] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(925), + [3125] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [3127] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(476), + [3130] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(477), + [3133] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), + [3135] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), + [3137] = {.count = 1, .reusable = true}, SHIFT(1399), + [3139] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [3141] = {.count = 1, .reusable = true}, SHIFT(1400), + [3143] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [3145] = {.count = 1, .reusable = true}, SHIFT(1401), + [3147] = {.count = 1, .reusable = false}, SHIFT(1403), + [3149] = {.count = 1, .reusable = false}, SHIFT(1404), + [3151] = {.count = 1, .reusable = true}, SHIFT(1405), + [3153] = {.count = 1, .reusable = true}, SHIFT(1406), + [3155] = {.count = 1, .reusable = true}, SHIFT(1407), + [3157] = {.count = 1, .reusable = false}, SHIFT(1408), + [3159] = {.count = 1, .reusable = false}, SHIFT(1407), + [3161] = {.count = 1, .reusable = true}, SHIFT(1410), + [3163] = {.count = 1, .reusable = false}, SHIFT(1412), + [3165] = {.count = 1, .reusable = true}, SHIFT(1412), + [3167] = {.count = 1, .reusable = true}, SHIFT(1411), + [3169] = {.count = 1, .reusable = true}, SHIFT(1413), + [3171] = {.count = 1, .reusable = false}, SHIFT(1415), + [3173] = {.count = 1, .reusable = true}, SHIFT(1415), + [3175] = {.count = 1, .reusable = true}, SHIFT(1414), + [3177] = {.count = 1, .reusable = true}, SHIFT(1416), + [3179] = {.count = 1, .reusable = false}, SHIFT(1418), + [3181] = {.count = 1, .reusable = true}, SHIFT(1418), + [3183] = {.count = 1, .reusable = true}, SHIFT(1417), + [3185] = {.count = 1, .reusable = true}, SHIFT(1419), + [3187] = {.count = 1, .reusable = true}, SHIFT(1420), + [3189] = {.count = 1, .reusable = false}, SHIFT(1420), + [3191] = {.count = 1, .reusable = true}, SHIFT(1423), + [3193] = {.count = 1, .reusable = false}, SHIFT(1423), + [3195] = {.count = 1, .reusable = true}, SHIFT(1426), + [3197] = {.count = 1, .reusable = true}, SHIFT(1427), + [3199] = {.count = 1, .reusable = false}, SHIFT(1427), + [3201] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [3203] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [3205] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3207] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(502), + [3210] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(503), + [3213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(504), + [3216] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(505), + [3219] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(506), + [3222] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(507), + [3225] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(508), + [3228] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(509), + [3231] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(511), + [3234] = {.count = 1, .reusable = false}, SHIFT(1430), + [3236] = {.count = 1, .reusable = true}, SHIFT(1431), + [3238] = {.count = 1, .reusable = false}, SHIFT(1432), + [3240] = {.count = 1, .reusable = true}, SHIFT(1433), + [3242] = {.count = 1, .reusable = true}, SHIFT(1435), + [3244] = {.count = 1, .reusable = true}, SHIFT(1436), + [3246] = {.count = 1, .reusable = false}, SHIFT(1438), + [3248] = {.count = 1, .reusable = true}, SHIFT(1438), + [3250] = {.count = 1, .reusable = true}, SHIFT(1437), + [3252] = {.count = 1, .reusable = true}, SHIFT(1439), + [3254] = {.count = 1, .reusable = false}, SHIFT(1441), + [3256] = {.count = 1, .reusable = true}, SHIFT(1441), + [3258] = {.count = 1, .reusable = true}, SHIFT(1440), + [3260] = {.count = 1, .reusable = false}, SHIFT(1443), + [3262] = {.count = 1, .reusable = true}, SHIFT(1443), + [3264] = {.count = 1, .reusable = true}, SHIFT(1442), + [3266] = {.count = 1, .reusable = true}, SHIFT(1444), + [3268] = {.count = 1, .reusable = true}, SHIFT(1445), + [3270] = {.count = 1, .reusable = true}, SHIFT(1446), + [3272] = {.count = 1, .reusable = true}, SHIFT(1447), + [3274] = {.count = 1, .reusable = true}, SHIFT(1448), + [3276] = {.count = 1, .reusable = true}, SHIFT(1449), + [3278] = {.count = 1, .reusable = true}, SHIFT(1450), + [3280] = {.count = 1, .reusable = false}, SHIFT(1450), + [3282] = {.count = 1, .reusable = true}, SHIFT(1451), + [3284] = {.count = 1, .reusable = false}, SHIFT(1451), + [3286] = {.count = 1, .reusable = true}, SHIFT(1452), + [3288] = {.count = 1, .reusable = true}, SHIFT(1453), + [3290] = {.count = 1, .reusable = false}, SHIFT(1453), + [3292] = {.count = 1, .reusable = true}, SHIFT(1454), + [3294] = {.count = 1, .reusable = true}, SHIFT(1458), + [3296] = {.count = 1, .reusable = false}, SHIFT(1460), + [3298] = {.count = 1, .reusable = false}, SHIFT(1461), + [3300] = {.count = 1, .reusable = true}, SHIFT(1463), + [3302] = {.count = 1, .reusable = true}, SHIFT(1464), + [3304] = {.count = 1, .reusable = false}, SHIFT(1465), + [3306] = {.count = 1, .reusable = false}, SHIFT(1463), + [3308] = {.count = 1, .reusable = true}, SHIFT(1466), + [3310] = {.count = 1, .reusable = true}, SHIFT(1467), + [3312] = {.count = 1, .reusable = true}, SHIFT(1468), + [3314] = {.count = 1, .reusable = false}, SHIFT(1469), + [3316] = {.count = 1, .reusable = false}, SHIFT(1468), + [3318] = {.count = 1, .reusable = true}, SHIFT(1480), + [3320] = {.count = 1, .reusable = true}, SHIFT(1481), + [3322] = {.count = 1, .reusable = true}, SHIFT(1482), + [3324] = {.count = 1, .reusable = false}, SHIFT(1481), + [3326] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(537), + [3329] = {.count = 1, .reusable = false}, SHIFT(1484), + [3331] = {.count = 1, .reusable = true}, SHIFT(1485), + [3333] = {.count = 1, .reusable = false}, SHIFT(1486), + [3335] = {.count = 1, .reusable = true}, SHIFT(1487), + [3337] = {.count = 1, .reusable = true}, SHIFT(1489), + [3339] = {.count = 1, .reusable = true}, SHIFT(1490), + [3341] = {.count = 1, .reusable = false}, SHIFT(1492), + [3343] = {.count = 1, .reusable = true}, SHIFT(1492), + [3345] = {.count = 1, .reusable = true}, SHIFT(1491), + [3347] = {.count = 1, .reusable = true}, SHIFT(1493), + [3349] = {.count = 1, .reusable = false}, SHIFT(1495), + [3351] = {.count = 1, .reusable = true}, SHIFT(1495), + [3353] = {.count = 1, .reusable = true}, SHIFT(1494), + [3355] = {.count = 1, .reusable = false}, SHIFT(1497), + [3357] = {.count = 1, .reusable = true}, SHIFT(1497), + [3359] = {.count = 1, .reusable = true}, SHIFT(1496), + [3361] = {.count = 1, .reusable = true}, SHIFT(1498), + [3363] = {.count = 1, .reusable = true}, SHIFT(1499), + [3365] = {.count = 1, .reusable = true}, SHIFT(1500), + [3367] = {.count = 1, .reusable = true}, SHIFT(1501), + [3369] = {.count = 1, .reusable = true}, SHIFT(1502), + [3371] = {.count = 1, .reusable = true}, SHIFT(1503), + [3373] = {.count = 1, .reusable = true}, SHIFT(1504), + [3375] = {.count = 1, .reusable = false}, SHIFT(1504), + [3377] = {.count = 1, .reusable = true}, SHIFT(1505), + [3379] = {.count = 1, .reusable = false}, SHIFT(1505), + [3381] = {.count = 1, .reusable = true}, SHIFT(1506), + [3383] = {.count = 1, .reusable = true}, SHIFT(1507), + [3385] = {.count = 1, .reusable = false}, SHIFT(1507), + [3387] = {.count = 1, .reusable = true}, SHIFT(1508), + [3389] = {.count = 1, .reusable = false}, SHIFT(1508), + [3391] = {.count = 1, .reusable = true}, SHIFT(1509), + [3393] = {.count = 1, .reusable = false}, SHIFT(1511), + [3395] = {.count = 1, .reusable = false}, SHIFT(1512), + [3397] = {.count = 1, .reusable = true}, SHIFT(1513), + [3399] = {.count = 1, .reusable = true}, SHIFT(1514), + [3401] = {.count = 1, .reusable = true}, SHIFT(1515), + [3403] = {.count = 1, .reusable = false}, SHIFT(1516), + [3405] = {.count = 1, .reusable = false}, SHIFT(1515), + [3407] = {.count = 1, .reusable = true}, SHIFT(1518), + [3409] = {.count = 1, .reusable = false}, SHIFT(1520), + [3411] = {.count = 1, .reusable = true}, SHIFT(1520), + [3413] = {.count = 1, .reusable = true}, SHIFT(1519), + [3415] = {.count = 1, .reusable = true}, SHIFT(1521), + [3417] = {.count = 1, .reusable = false}, SHIFT(1523), + [3419] = {.count = 1, .reusable = true}, SHIFT(1523), + [3421] = {.count = 1, .reusable = true}, SHIFT(1522), + [3423] = {.count = 1, .reusable = true}, SHIFT(1524), + [3425] = {.count = 1, .reusable = false}, SHIFT(1526), + [3427] = {.count = 1, .reusable = true}, SHIFT(1526), + [3429] = {.count = 1, .reusable = true}, SHIFT(1525), + [3431] = {.count = 1, .reusable = true}, SHIFT(1527), + [3433] = {.count = 1, .reusable = true}, SHIFT(1528), + [3435] = {.count = 1, .reusable = false}, SHIFT(1528), + [3437] = {.count = 1, .reusable = true}, SHIFT(1531), + [3439] = {.count = 1, .reusable = false}, SHIFT(1531), + [3441] = {.count = 1, .reusable = true}, SHIFT(1534), + [3443] = {.count = 1, .reusable = true}, SHIFT(1535), + [3445] = {.count = 1, .reusable = false}, SHIFT(1535), + [3447] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(562), + [3450] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(563), + [3453] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(564), + [3456] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(565), + [3459] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(566), + [3462] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(567), + [3465] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(568), + [3468] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(569), + [3471] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(565), + [3474] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3476] = {.count = 1, .reusable = false}, SHIFT(1539), + [3478] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [3480] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [3482] = {.count = 1, .reusable = false}, REDUCE(aux_sym_program_repeat1, 2), + [3484] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), + [3486] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), + [3488] = {.count = 1, .reusable = true}, SHIFT(1540), + [3490] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [3492] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3494] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3496] = {.count = 1, .reusable = true}, SHIFT(1542), + [3498] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3500] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(578), + [3503] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3505] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [3507] = {.count = 1, .reusable = true}, SHIFT(1544), + [3509] = {.count = 1, .reusable = true}, SHIFT(1545), + [3511] = {.count = 1, .reusable = true}, SHIFT(1548), + [3513] = {.count = 1, .reusable = true}, SHIFT(1550), + [3515] = {.count = 1, .reusable = false}, SHIFT(1553), + [3517] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [3519] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [3521] = {.count = 1, .reusable = true}, SHIFT(1555), + [3523] = {.count = 1, .reusable = false}, SHIFT(1557), + [3525] = {.count = 1, .reusable = true}, SHIFT(1559), + [3527] = {.count = 1, .reusable = true}, SHIFT(1560), + [3529] = {.count = 1, .reusable = false}, SHIFT(1561), + [3531] = {.count = 1, .reusable = true}, SHIFT(1562), + [3533] = {.count = 1, .reusable = true}, SHIFT(1564), + [3535] = {.count = 1, .reusable = true}, SHIFT(1565), + [3537] = {.count = 1, .reusable = true}, SHIFT(1566), + [3539] = {.count = 1, .reusable = true}, SHIFT(1567), + [3541] = {.count = 1, .reusable = true}, SHIFT(1568), + [3543] = {.count = 1, .reusable = true}, SHIFT(1569), + [3545] = {.count = 1, .reusable = false}, SHIFT(1570), + [3547] = {.count = 1, .reusable = true}, SHIFT(1570), + [3549] = {.count = 1, .reusable = true}, SHIFT(1571), + [3551] = {.count = 1, .reusable = false}, SHIFT(1572), + [3553] = {.count = 1, .reusable = true}, SHIFT(1572), + [3555] = {.count = 1, .reusable = true}, SHIFT(1573), + [3557] = {.count = 1, .reusable = false}, SHIFT(1574), + [3559] = {.count = 1, .reusable = true}, SHIFT(1574), + [3561] = {.count = 1, .reusable = true}, SHIFT(1575), + [3563] = {.count = 1, .reusable = true}, SHIFT(1576), + [3565] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [3567] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [3569] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [3571] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [3573] = {.count = 1, .reusable = true}, SHIFT(1578), + [3575] = {.count = 1, .reusable = true}, SHIFT(1579), + [3577] = {.count = 1, .reusable = false}, SHIFT(1584), + [3579] = {.count = 1, .reusable = true}, SHIFT(1584), + [3581] = {.count = 1, .reusable = true}, SHIFT(1585), + [3583] = {.count = 1, .reusable = true}, SHIFT(1586), + [3585] = {.count = 1, .reusable = false}, SHIFT(1587), + [3587] = {.count = 1, .reusable = true}, SHIFT(1587), + [3589] = {.count = 1, .reusable = true}, SHIFT(1588), + [3591] = {.count = 1, .reusable = true}, SHIFT(1589), + [3593] = {.count = 1, .reusable = true}, SHIFT(1590), + [3595] = {.count = 1, .reusable = true}, SHIFT(1591), + [3597] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), + [3599] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), + [3601] = {.count = 1, .reusable = true}, SHIFT(1594), + [3603] = {.count = 1, .reusable = true}, SHIFT(1595), + [3605] = {.count = 1, .reusable = true}, SHIFT(1596), + [3607] = {.count = 1, .reusable = false}, SHIFT(1597), + [3609] = {.count = 1, .reusable = true}, SHIFT(1598), + [3611] = {.count = 1, .reusable = true}, SHIFT(1600), + [3613] = {.count = 1, .reusable = true}, SHIFT(1601), + [3615] = {.count = 1, .reusable = true}, SHIFT(1602), + [3617] = {.count = 1, .reusable = true}, SHIFT(1603), + [3619] = {.count = 1, .reusable = true}, SHIFT(1604), + [3621] = {.count = 1, .reusable = true}, SHIFT(1605), + [3623] = {.count = 1, .reusable = false}, SHIFT(1606), + [3625] = {.count = 1, .reusable = true}, SHIFT(1606), + [3627] = {.count = 1, .reusable = true}, SHIFT(1607), + [3629] = {.count = 1, .reusable = false}, SHIFT(1608), + [3631] = {.count = 1, .reusable = true}, SHIFT(1608), + [3633] = {.count = 1, .reusable = true}, SHIFT(1609), + [3635] = {.count = 1, .reusable = false}, SHIFT(1610), + [3637] = {.count = 1, .reusable = true}, SHIFT(1610), + [3639] = {.count = 1, .reusable = true}, SHIFT(1611), + [3641] = {.count = 1, .reusable = true}, SHIFT(1612), + [3643] = {.count = 1, .reusable = true}, SHIFT(1613), + [3645] = {.count = 1, .reusable = true}, SHIFT(1614), + [3647] = {.count = 1, .reusable = true}, SHIFT(1616), + [3649] = {.count = 1, .reusable = false}, SHIFT(1618), + [3651] = {.count = 1, .reusable = false}, SHIFT(1619), + [3653] = {.count = 1, .reusable = true}, SHIFT(1621), + [3655] = {.count = 1, .reusable = true}, SHIFT(1622), + [3657] = {.count = 1, .reusable = false}, SHIFT(1623), + [3659] = {.count = 1, .reusable = false}, SHIFT(1621), + [3661] = {.count = 1, .reusable = true}, SHIFT(1624), + [3663] = {.count = 1, .reusable = true}, SHIFT(1625), + [3665] = {.count = 1, .reusable = true}, SHIFT(1626), + [3667] = {.count = 1, .reusable = false}, SHIFT(1627), + [3669] = {.count = 1, .reusable = false}, SHIFT(1626), + [3671] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(692), + [3674] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(693), + [3677] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(693), + [3680] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(694), + [3683] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(694), + [3686] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(695), + [3689] = {.count = 1, .reusable = true}, SHIFT(1638), + [3691] = {.count = 1, .reusable = true}, SHIFT(1639), + [3693] = {.count = 1, .reusable = false}, SHIFT(1640), + [3695] = {.count = 1, .reusable = true}, SHIFT(1641), + [3697] = {.count = 1, .reusable = true}, SHIFT(1643), + [3699] = {.count = 1, .reusable = true}, SHIFT(1644), + [3701] = {.count = 1, .reusable = true}, SHIFT(1645), + [3703] = {.count = 1, .reusable = true}, SHIFT(1646), + [3705] = {.count = 1, .reusable = true}, SHIFT(1647), + [3707] = {.count = 1, .reusable = true}, SHIFT(1648), + [3709] = {.count = 1, .reusable = false}, SHIFT(1649), + [3711] = {.count = 1, .reusable = true}, SHIFT(1649), + [3713] = {.count = 1, .reusable = true}, SHIFT(1650), + [3715] = {.count = 1, .reusable = false}, SHIFT(1651), + [3717] = {.count = 1, .reusable = true}, SHIFT(1651), + [3719] = {.count = 1, .reusable = true}, SHIFT(1652), + [3721] = {.count = 1, .reusable = false}, SHIFT(1653), + [3723] = {.count = 1, .reusable = true}, SHIFT(1653), + [3725] = {.count = 1, .reusable = true}, SHIFT(1654), + [3727] = {.count = 1, .reusable = true}, SHIFT(1655), + [3729] = {.count = 1, .reusable = true}, SHIFT(1656), + [3731] = {.count = 1, .reusable = true}, SHIFT(1657), + [3733] = {.count = 1, .reusable = true}, SHIFT(1658), + [3735] = {.count = 1, .reusable = false}, SHIFT(1659), + [3737] = {.count = 1, .reusable = true}, SHIFT(1660), + [3739] = {.count = 1, .reusable = true}, SHIFT(1662), + [3741] = {.count = 1, .reusable = true}, SHIFT(1663), + [3743] = {.count = 1, .reusable = true}, SHIFT(1664), + [3745] = {.count = 1, .reusable = true}, SHIFT(1665), + [3747] = {.count = 1, .reusable = true}, SHIFT(1666), + [3749] = {.count = 1, .reusable = true}, SHIFT(1667), + [3751] = {.count = 1, .reusable = false}, SHIFT(1668), + [3753] = {.count = 1, .reusable = true}, SHIFT(1668), + [3755] = {.count = 1, .reusable = true}, SHIFT(1669), + [3757] = {.count = 1, .reusable = false}, SHIFT(1670), + [3759] = {.count = 1, .reusable = true}, SHIFT(1670), + [3761] = {.count = 1, .reusable = true}, SHIFT(1671), + [3763] = {.count = 1, .reusable = false}, SHIFT(1672), + [3765] = {.count = 1, .reusable = true}, SHIFT(1672), + [3767] = {.count = 1, .reusable = true}, SHIFT(1673), + [3769] = {.count = 1, .reusable = true}, SHIFT(1674), + [3771] = {.count = 1, .reusable = true}, SHIFT(1675), + [3773] = {.count = 1, .reusable = true}, SHIFT(1676), + [3775] = {.count = 1, .reusable = false}, SHIFT(1677), + [3777] = {.count = 1, .reusable = true}, SHIFT(1678), + [3779] = {.count = 1, .reusable = true}, SHIFT(1680), + [3781] = {.count = 1, .reusable = true}, SHIFT(1681), + [3783] = {.count = 1, .reusable = true}, SHIFT(1682), + [3785] = {.count = 1, .reusable = true}, SHIFT(1683), + [3787] = {.count = 1, .reusable = true}, SHIFT(1684), + [3789] = {.count = 1, .reusable = true}, SHIFT(1685), + [3791] = {.count = 1, .reusable = false}, SHIFT(1686), + [3793] = {.count = 1, .reusable = true}, SHIFT(1686), + [3795] = {.count = 1, .reusable = true}, SHIFT(1687), + [3797] = {.count = 1, .reusable = false}, SHIFT(1688), + [3799] = {.count = 1, .reusable = true}, SHIFT(1688), + [3801] = {.count = 1, .reusable = true}, SHIFT(1689), + [3803] = {.count = 1, .reusable = false}, SHIFT(1690), + [3805] = {.count = 1, .reusable = true}, SHIFT(1690), + [3807] = {.count = 1, .reusable = true}, SHIFT(1691), + [3809] = {.count = 1, .reusable = true}, SHIFT(1692), + [3811] = {.count = 1, .reusable = true}, SHIFT(1693), + [3813] = {.count = 1, .reusable = true}, SHIFT(1694), + [3815] = {.count = 1, .reusable = false}, SHIFT(1695), + [3817] = {.count = 1, .reusable = true}, SHIFT(1696), + [3819] = {.count = 1, .reusable = true}, SHIFT(1698), + [3821] = {.count = 1, .reusable = true}, SHIFT(1699), + [3823] = {.count = 1, .reusable = true}, SHIFT(1700), + [3825] = {.count = 1, .reusable = true}, SHIFT(1701), + [3827] = {.count = 1, .reusable = true}, SHIFT(1702), + [3829] = {.count = 1, .reusable = true}, SHIFT(1703), + [3831] = {.count = 1, .reusable = false}, SHIFT(1704), + [3833] = {.count = 1, .reusable = true}, SHIFT(1704), + [3835] = {.count = 1, .reusable = true}, SHIFT(1705), + [3837] = {.count = 1, .reusable = false}, SHIFT(1706), + [3839] = {.count = 1, .reusable = true}, SHIFT(1706), + [3841] = {.count = 1, .reusable = true}, SHIFT(1707), + [3843] = {.count = 1, .reusable = false}, SHIFT(1708), + [3845] = {.count = 1, .reusable = true}, SHIFT(1708), + [3847] = {.count = 1, .reusable = true}, SHIFT(1709), + [3849] = {.count = 1, .reusable = true}, SHIFT(1710), + [3851] = {.count = 1, .reusable = true}, SHIFT(1711), + [3853] = {.count = 1, .reusable = true}, SHIFT(1712), + [3855] = {.count = 1, .reusable = false}, SHIFT(1713), + [3857] = {.count = 1, .reusable = true}, SHIFT(1714), + [3859] = {.count = 1, .reusable = true}, SHIFT(1716), + [3861] = {.count = 1, .reusable = true}, SHIFT(1717), + [3863] = {.count = 1, .reusable = true}, SHIFT(1718), + [3865] = {.count = 1, .reusable = true}, SHIFT(1719), + [3867] = {.count = 1, .reusable = true}, SHIFT(1720), + [3869] = {.count = 1, .reusable = true}, SHIFT(1721), + [3871] = {.count = 1, .reusable = false}, SHIFT(1722), + [3873] = {.count = 1, .reusable = true}, SHIFT(1722), + [3875] = {.count = 1, .reusable = true}, SHIFT(1723), + [3877] = {.count = 1, .reusable = false}, SHIFT(1724), + [3879] = {.count = 1, .reusable = true}, SHIFT(1724), + [3881] = {.count = 1, .reusable = true}, SHIFT(1725), + [3883] = {.count = 1, .reusable = false}, SHIFT(1726), + [3885] = {.count = 1, .reusable = true}, SHIFT(1726), + [3887] = {.count = 1, .reusable = true}, SHIFT(1727), + [3889] = {.count = 1, .reusable = true}, SHIFT(1728), + [3891] = {.count = 1, .reusable = true}, SHIFT(1729), + [3893] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [3895] = {.count = 1, .reusable = true}, SHIFT(1730), + [3897] = {.count = 1, .reusable = true}, SHIFT(1731), + [3899] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [3901] = {.count = 1, .reusable = true}, SHIFT(1732), + [3903] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3905] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3907] = {.count = 1, .reusable = false}, SHIFT(1734), + [3909] = {.count = 1, .reusable = false}, SHIFT(1735), + [3911] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [3913] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [3915] = {.count = 1, .reusable = true}, SHIFT(1736), + [3917] = {.count = 1, .reusable = true}, SHIFT(1737), + [3919] = {.count = 1, .reusable = true}, SHIFT(1738), + [3921] = {.count = 1, .reusable = false}, SHIFT(1739), + [3923] = {.count = 1, .reusable = false}, SHIFT(1738), + [3925] = {.count = 1, .reusable = true}, SHIFT(1741), + [3927] = {.count = 1, .reusable = false}, SHIFT(1743), + [3929] = {.count = 1, .reusable = true}, SHIFT(1743), + [3931] = {.count = 1, .reusable = true}, SHIFT(1742), + [3933] = {.count = 1, .reusable = true}, SHIFT(1744), + [3935] = {.count = 1, .reusable = false}, SHIFT(1746), + [3937] = {.count = 1, .reusable = true}, SHIFT(1746), + [3939] = {.count = 1, .reusable = true}, SHIFT(1745), + [3941] = {.count = 1, .reusable = true}, SHIFT(1747), + [3943] = {.count = 1, .reusable = false}, SHIFT(1749), + [3945] = {.count = 1, .reusable = true}, SHIFT(1749), + [3947] = {.count = 1, .reusable = true}, SHIFT(1748), + [3949] = {.count = 1, .reusable = true}, SHIFT(1750), + [3951] = {.count = 1, .reusable = true}, SHIFT(1751), + [3953] = {.count = 1, .reusable = false}, SHIFT(1751), + [3955] = {.count = 1, .reusable = true}, SHIFT(1754), + [3957] = {.count = 1, .reusable = false}, SHIFT(1754), + [3959] = {.count = 1, .reusable = true}, SHIFT(1757), + [3961] = {.count = 1, .reusable = true}, SHIFT(1758), + [3963] = {.count = 1, .reusable = false}, SHIFT(1758), + [3965] = {.count = 1, .reusable = true}, SHIFT(1761), + [3967] = {.count = 1, .reusable = true}, SHIFT(1762), + [3969] = {.count = 1, .reusable = true}, SHIFT(1763), + [3971] = {.count = 1, .reusable = false}, SHIFT(1764), + [3973] = {.count = 1, .reusable = true}, SHIFT(1764), + [3975] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3977] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3979] = {.count = 1, .reusable = true}, SHIFT(1765), + [3981] = {.count = 1, .reusable = false}, SHIFT(1766), + [3983] = {.count = 1, .reusable = true}, SHIFT(1766), + [3985] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3987] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3989] = {.count = 1, .reusable = true}, SHIFT(1767), + [3991] = {.count = 1, .reusable = false}, SHIFT(1768), + [3993] = {.count = 1, .reusable = true}, SHIFT(1768), + [3995] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(867), + [3998] = {.count = 1, .reusable = false}, SHIFT(1769), + [4000] = {.count = 1, .reusable = true}, SHIFT(1770), + [4002] = {.count = 1, .reusable = false}, SHIFT(1771), + [4004] = {.count = 1, .reusable = true}, SHIFT(1772), + [4006] = {.count = 1, .reusable = true}, SHIFT(1774), + [4008] = {.count = 1, .reusable = true}, SHIFT(1775), + [4010] = {.count = 1, .reusable = false}, SHIFT(1777), + [4012] = {.count = 1, .reusable = true}, SHIFT(1777), + [4014] = {.count = 1, .reusable = true}, SHIFT(1776), + [4016] = {.count = 1, .reusable = true}, SHIFT(1778), + [4018] = {.count = 1, .reusable = false}, SHIFT(1780), + [4020] = {.count = 1, .reusable = true}, SHIFT(1780), + [4022] = {.count = 1, .reusable = true}, SHIFT(1779), + [4024] = {.count = 1, .reusable = false}, SHIFT(1782), + [4026] = {.count = 1, .reusable = true}, SHIFT(1782), + [4028] = {.count = 1, .reusable = true}, SHIFT(1781), + [4030] = {.count = 1, .reusable = true}, SHIFT(1783), + [4032] = {.count = 1, .reusable = true}, SHIFT(1784), + [4034] = {.count = 1, .reusable = true}, SHIFT(1785), + [4036] = {.count = 1, .reusable = true}, SHIFT(1786), + [4038] = {.count = 1, .reusable = true}, SHIFT(1787), + [4040] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4042] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4044] = {.count = 1, .reusable = true}, SHIFT(1788), + [4046] = {.count = 1, .reusable = true}, SHIFT(1789), + [4048] = {.count = 1, .reusable = true}, SHIFT(1790), + [4050] = {.count = 1, .reusable = false}, SHIFT(1790), + [4052] = {.count = 1, .reusable = true}, SHIFT(1791), + [4054] = {.count = 1, .reusable = false}, SHIFT(1791), + [4056] = {.count = 1, .reusable = true}, SHIFT(1792), + [4058] = {.count = 1, .reusable = true}, SHIFT(1793), + [4060] = {.count = 1, .reusable = false}, SHIFT(1793), + [4062] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4064] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4066] = {.count = 1, .reusable = true}, SHIFT(1794), + [4068] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4070] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4072] = {.count = 1, .reusable = true}, SHIFT(1795), + [4074] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 5), + [4076] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 5), + [4078] = {.count = 1, .reusable = false}, SHIFT(1797), + [4080] = {.count = 1, .reusable = true}, SHIFT(1797), + [4082] = {.count = 1, .reusable = true}, SHIFT(1798), + [4084] = {.count = 1, .reusable = true}, SHIFT(1799), + [4086] = {.count = 1, .reusable = false}, SHIFT(1800), + [4088] = {.count = 1, .reusable = true}, SHIFT(1800), + [4090] = {.count = 1, .reusable = true}, SHIFT(1801), + [4092] = {.count = 1, .reusable = true}, SHIFT(1802), + [4094] = {.count = 1, .reusable = true}, SHIFT(1803), + [4096] = {.count = 1, .reusable = true}, SHIFT(1804), + [4098] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 5), + [4100] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 5), + [4102] = {.count = 1, .reusable = true}, SHIFT(1807), + [4104] = {.count = 1, .reusable = false}, SHIFT(1808), + [4106] = {.count = 1, .reusable = true}, SHIFT(1809), + [4108] = {.count = 1, .reusable = true}, SHIFT(1811), + [4110] = {.count = 1, .reusable = true}, SHIFT(1812), + [4112] = {.count = 1, .reusable = false}, SHIFT(1814), + [4114] = {.count = 1, .reusable = true}, SHIFT(1814), + [4116] = {.count = 1, .reusable = true}, SHIFT(1813), + [4118] = {.count = 1, .reusable = true}, SHIFT(1815), + [4120] = {.count = 1, .reusable = false}, SHIFT(1817), + [4122] = {.count = 1, .reusable = true}, SHIFT(1817), + [4124] = {.count = 1, .reusable = true}, SHIFT(1816), + [4126] = {.count = 1, .reusable = false}, SHIFT(1819), + [4128] = {.count = 1, .reusable = true}, SHIFT(1819), + [4130] = {.count = 1, .reusable = true}, SHIFT(1818), + [4132] = {.count = 1, .reusable = true}, SHIFT(1820), + [4134] = {.count = 1, .reusable = true}, SHIFT(1821), + [4136] = {.count = 1, .reusable = true}, SHIFT(1822), + [4138] = {.count = 1, .reusable = true}, SHIFT(1823), + [4140] = {.count = 1, .reusable = true}, SHIFT(1824), + [4142] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), + [4144] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), + [4146] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [4148] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [4150] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(937), + [4153] = {.count = 1, .reusable = false}, SHIFT(1825), + [4155] = {.count = 1, .reusable = true}, SHIFT(1826), + [4157] = {.count = 1, .reusable = false}, SHIFT(1827), + [4159] = {.count = 1, .reusable = true}, SHIFT(1828), + [4161] = {.count = 1, .reusable = true}, SHIFT(1830), + [4163] = {.count = 1, .reusable = true}, SHIFT(1831), + [4165] = {.count = 1, .reusable = false}, SHIFT(1833), + [4167] = {.count = 1, .reusable = true}, SHIFT(1833), + [4169] = {.count = 1, .reusable = true}, SHIFT(1832), + [4171] = {.count = 1, .reusable = true}, SHIFT(1834), + [4173] = {.count = 1, .reusable = false}, SHIFT(1836), + [4175] = {.count = 1, .reusable = true}, SHIFT(1836), + [4177] = {.count = 1, .reusable = true}, SHIFT(1835), + [4179] = {.count = 1, .reusable = false}, SHIFT(1838), + [4181] = {.count = 1, .reusable = true}, SHIFT(1838), + [4183] = {.count = 1, .reusable = true}, SHIFT(1837), + [4185] = {.count = 1, .reusable = true}, SHIFT(1839), + [4187] = {.count = 1, .reusable = true}, SHIFT(1840), + [4189] = {.count = 1, .reusable = true}, SHIFT(1841), + [4191] = {.count = 1, .reusable = true}, SHIFT(1842), + [4193] = {.count = 1, .reusable = true}, SHIFT(1843), + [4195] = {.count = 1, .reusable = true}, SHIFT(1844), + [4197] = {.count = 1, .reusable = true}, SHIFT(1845), + [4199] = {.count = 1, .reusable = false}, SHIFT(1845), + [4201] = {.count = 1, .reusable = true}, SHIFT(1846), + [4203] = {.count = 1, .reusable = false}, SHIFT(1846), + [4205] = {.count = 1, .reusable = true}, SHIFT(1847), + [4207] = {.count = 1, .reusable = true}, SHIFT(1848), + [4209] = {.count = 1, .reusable = false}, SHIFT(1848), + [4211] = {.count = 1, .reusable = true}, SHIFT(1849), + [4213] = {.count = 1, .reusable = true}, SHIFT(1850), + [4215] = {.count = 1, .reusable = false}, SHIFT(1851), + [4217] = {.count = 1, .reusable = true}, SHIFT(1852), + [4219] = {.count = 1, .reusable = true}, SHIFT(1854), + [4221] = {.count = 1, .reusable = true}, SHIFT(1855), + [4223] = {.count = 1, .reusable = true}, SHIFT(1856), + [4225] = {.count = 1, .reusable = true}, SHIFT(1857), + [4227] = {.count = 1, .reusable = true}, SHIFT(1858), + [4229] = {.count = 1, .reusable = true}, SHIFT(1859), + [4231] = {.count = 1, .reusable = false}, SHIFT(1860), + [4233] = {.count = 1, .reusable = true}, SHIFT(1860), + [4235] = {.count = 1, .reusable = true}, SHIFT(1861), + [4237] = {.count = 1, .reusable = false}, SHIFT(1862), + [4239] = {.count = 1, .reusable = true}, SHIFT(1862), + [4241] = {.count = 1, .reusable = true}, SHIFT(1863), + [4243] = {.count = 1, .reusable = false}, SHIFT(1864), + [4245] = {.count = 1, .reusable = true}, SHIFT(1864), + [4247] = {.count = 1, .reusable = true}, SHIFT(1865), + [4249] = {.count = 1, .reusable = true}, SHIFT(1866), + [4251] = {.count = 1, .reusable = true}, SHIFT(1867), + [4253] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), + [4255] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), + [4257] = {.count = 1, .reusable = true}, SHIFT(1869), + [4259] = {.count = 1, .reusable = true}, SHIFT(1870), + [4261] = {.count = 1, .reusable = false}, SHIFT(1872), + [4263] = {.count = 1, .reusable = false}, SHIFT(1873), + [4265] = {.count = 1, .reusable = true}, SHIFT(1874), + [4267] = {.count = 1, .reusable = true}, SHIFT(1875), + [4269] = {.count = 1, .reusable = true}, SHIFT(1876), + [4271] = {.count = 1, .reusable = false}, SHIFT(1877), + [4273] = {.count = 1, .reusable = false}, SHIFT(1876), + [4275] = {.count = 1, .reusable = true}, SHIFT(1879), + [4277] = {.count = 1, .reusable = false}, SHIFT(1881), + [4279] = {.count = 1, .reusable = true}, SHIFT(1881), + [4281] = {.count = 1, .reusable = true}, SHIFT(1880), + [4283] = {.count = 1, .reusable = true}, SHIFT(1882), + [4285] = {.count = 1, .reusable = false}, SHIFT(1884), + [4287] = {.count = 1, .reusable = true}, SHIFT(1884), + [4289] = {.count = 1, .reusable = true}, SHIFT(1883), + [4291] = {.count = 1, .reusable = true}, SHIFT(1885), + [4293] = {.count = 1, .reusable = false}, SHIFT(1887), + [4295] = {.count = 1, .reusable = true}, SHIFT(1887), + [4297] = {.count = 1, .reusable = true}, SHIFT(1886), + [4299] = {.count = 1, .reusable = true}, SHIFT(1888), + [4301] = {.count = 1, .reusable = true}, SHIFT(1889), + [4303] = {.count = 1, .reusable = false}, SHIFT(1889), + [4305] = {.count = 1, .reusable = true}, SHIFT(1892), + [4307] = {.count = 1, .reusable = false}, SHIFT(1892), + [4309] = {.count = 1, .reusable = true}, SHIFT(1895), + [4311] = {.count = 1, .reusable = true}, SHIFT(1896), + [4313] = {.count = 1, .reusable = false}, SHIFT(1896), + [4315] = {.count = 1, .reusable = false}, SHIFT(991), + [4317] = {.count = 1, .reusable = false}, SHIFT(993), + [4319] = {.count = 1, .reusable = false}, SHIFT(994), + [4321] = {.count = 1, .reusable = false}, SHIFT(997), + [4323] = {.count = 1, .reusable = false}, SHIFT(998), + [4325] = {.count = 1, .reusable = false}, SHIFT(999), + [4327] = {.count = 1, .reusable = false}, SHIFT(1000), + [4329] = {.count = 1, .reusable = false}, SHIFT(1901), + [4331] = {.count = 1, .reusable = true}, SHIFT(1902), + [4333] = {.count = 1, .reusable = true}, SHIFT(1903), + [4335] = {.count = 1, .reusable = true}, SHIFT(1904), + [4337] = {.count = 1, .reusable = false}, SHIFT(1905), + [4339] = {.count = 1, .reusable = true}, SHIFT(1906), + [4341] = {.count = 1, .reusable = true}, SHIFT(1908), + [4343] = {.count = 1, .reusable = true}, SHIFT(1909), + [4345] = {.count = 1, .reusable = true}, SHIFT(1910), + [4347] = {.count = 1, .reusable = true}, SHIFT(1911), + [4349] = {.count = 1, .reusable = true}, SHIFT(1912), + [4351] = {.count = 1, .reusable = true}, SHIFT(1913), + [4353] = {.count = 1, .reusable = false}, SHIFT(1914), + [4355] = {.count = 1, .reusable = true}, SHIFT(1914), + [4357] = {.count = 1, .reusable = true}, SHIFT(1915), + [4359] = {.count = 1, .reusable = false}, SHIFT(1916), + [4361] = {.count = 1, .reusable = true}, SHIFT(1916), + [4363] = {.count = 1, .reusable = true}, SHIFT(1917), + [4365] = {.count = 1, .reusable = false}, SHIFT(1918), + [4367] = {.count = 1, .reusable = true}, SHIFT(1918), + [4369] = {.count = 1, .reusable = true}, SHIFT(1919), + [4371] = {.count = 1, .reusable = true}, SHIFT(1920), + [4373] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1036), + [4376] = {.count = 1, .reusable = false}, SHIFT(1922), + [4378] = {.count = 1, .reusable = true}, SHIFT(1923), + [4380] = {.count = 1, .reusable = false}, SHIFT(1924), + [4382] = {.count = 1, .reusable = true}, SHIFT(1925), + [4384] = {.count = 1, .reusable = true}, SHIFT(1927), + [4386] = {.count = 1, .reusable = true}, SHIFT(1928), + [4388] = {.count = 1, .reusable = false}, SHIFT(1930), + [4390] = {.count = 1, .reusable = true}, SHIFT(1930), + [4392] = {.count = 1, .reusable = true}, SHIFT(1929), + [4394] = {.count = 1, .reusable = true}, SHIFT(1931), + [4396] = {.count = 1, .reusable = false}, SHIFT(1933), + [4398] = {.count = 1, .reusable = true}, SHIFT(1933), + [4400] = {.count = 1, .reusable = true}, SHIFT(1932), + [4402] = {.count = 1, .reusable = false}, SHIFT(1935), + [4404] = {.count = 1, .reusable = true}, SHIFT(1935), + [4406] = {.count = 1, .reusable = true}, SHIFT(1934), + [4408] = {.count = 1, .reusable = true}, SHIFT(1936), + [4410] = {.count = 1, .reusable = true}, SHIFT(1937), + [4412] = {.count = 1, .reusable = true}, SHIFT(1938), + [4414] = {.count = 1, .reusable = true}, SHIFT(1939), + [4416] = {.count = 1, .reusable = true}, SHIFT(1940), + [4418] = {.count = 1, .reusable = true}, SHIFT(1941), + [4420] = {.count = 1, .reusable = true}, SHIFT(1942), + [4422] = {.count = 1, .reusable = false}, SHIFT(1942), + [4424] = {.count = 1, .reusable = true}, SHIFT(1943), + [4426] = {.count = 1, .reusable = false}, SHIFT(1943), + [4428] = {.count = 1, .reusable = true}, SHIFT(1944), + [4430] = {.count = 1, .reusable = true}, SHIFT(1945), + [4432] = {.count = 1, .reusable = false}, SHIFT(1945), + [4434] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4436] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4438] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [4440] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [4442] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [4444] = {.count = 1, .reusable = true}, SHIFT(1947), + [4446] = {.count = 1, .reusable = true}, SHIFT(1948), + [4448] = {.count = 1, .reusable = true}, SHIFT(1949), + [4450] = {.count = 1, .reusable = true}, SHIFT(1951), + [4452] = {.count = 1, .reusable = false}, SHIFT(1952), + [4454] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [4456] = {.count = 1, .reusable = true}, SHIFT(1953), + [4458] = {.count = 1, .reusable = false}, SHIFT(1954), + [4460] = {.count = 1, .reusable = false}, SHIFT(1955), + [4462] = {.count = 1, .reusable = false}, SHIFT(1956), + [4464] = {.count = 1, .reusable = true}, SHIFT(1957), + [4466] = {.count = 1, .reusable = false}, SHIFT(1958), + [4468] = {.count = 1, .reusable = false}, SHIFT(1959), + [4470] = {.count = 1, .reusable = false}, SHIFT(1960), + [4472] = {.count = 1, .reusable = true}, SHIFT(1961), + [4474] = {.count = 1, .reusable = false}, SHIFT(1962), + [4476] = {.count = 1, .reusable = true}, SHIFT(1963), + [4478] = {.count = 1, .reusable = true}, SHIFT(1964), + [4480] = {.count = 1, .reusable = true}, SHIFT(1965), + [4482] = {.count = 1, .reusable = true}, SHIFT(1966), + [4484] = {.count = 1, .reusable = true}, SHIFT(1967), + [4486] = {.count = 1, .reusable = false}, SHIFT(1968), + [4488] = {.count = 1, .reusable = true}, SHIFT(1976), + [4490] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [4492] = {.count = 1, .reusable = true}, SHIFT(1979), + [4494] = {.count = 1, .reusable = true}, SHIFT(1983), + [4496] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4498] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [4500] = {.count = 1, .reusable = true}, SHIFT(1984), + [4502] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1985), + [4505] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(87), + [4508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(88), + [4511] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1986), + [4514] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(90), + [4517] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(91), + [4520] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(92), + [4523] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(93), + [4526] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4528] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4530] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4532] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [4534] = {.count = 1, .reusable = true}, SHIFT(1989), + [4536] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [4538] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [4540] = {.count = 1, .reusable = true}, SHIFT(1991), + [4542] = {.count = 1, .reusable = true}, SHIFT(1992), + [4544] = {.count = 1, .reusable = true}, SHIFT(1993), + [4546] = {.count = 1, .reusable = false}, SHIFT(1994), + [4548] = {.count = 1, .reusable = true}, SHIFT(1994), + [4550] = {.count = 1, .reusable = true}, SHIFT(1995), + [4552] = {.count = 1, .reusable = false}, SHIFT(1996), + [4554] = {.count = 1, .reusable = true}, SHIFT(1996), + [4556] = {.count = 1, .reusable = true}, SHIFT(1997), + [4558] = {.count = 1, .reusable = false}, SHIFT(1998), + [4560] = {.count = 1, .reusable = true}, SHIFT(1998), + [4562] = {.count = 1, .reusable = true}, SHIFT(1999), + [4564] = {.count = 1, .reusable = true}, SHIFT(2000), + [4566] = {.count = 1, .reusable = true}, SHIFT(2001), + [4568] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), + [4570] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), + [4572] = {.count = 1, .reusable = true}, SHIFT(2003), + [4574] = {.count = 1, .reusable = true}, SHIFT(2004), + [4576] = {.count = 1, .reusable = true}, SHIFT(2006), + [4578] = {.count = 1, .reusable = true}, SHIFT(2007), + [4580] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1120), + [4583] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1121), + [4586] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1121), + [4589] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1122), + [4592] = {.count = 1, .reusable = true}, SHIFT(2009), + [4594] = {.count = 1, .reusable = true}, SHIFT(2010), + [4596] = {.count = 1, .reusable = true}, SHIFT(2011), + [4598] = {.count = 1, .reusable = false}, SHIFT(2012), + [4600] = {.count = 1, .reusable = true}, SHIFT(2012), + [4602] = {.count = 1, .reusable = true}, SHIFT(2013), + [4604] = {.count = 1, .reusable = false}, SHIFT(2014), + [4606] = {.count = 1, .reusable = true}, SHIFT(2014), + [4608] = {.count = 1, .reusable = true}, SHIFT(2015), + [4610] = {.count = 1, .reusable = false}, SHIFT(2016), + [4612] = {.count = 1, .reusable = true}, SHIFT(2016), + [4614] = {.count = 1, .reusable = true}, SHIFT(2017), + [4616] = {.count = 1, .reusable = true}, SHIFT(2018), + [4618] = {.count = 1, .reusable = true}, SHIFT(2019), + [4620] = {.count = 1, .reusable = true}, SHIFT(2020), + [4622] = {.count = 1, .reusable = false}, SHIFT(2022), + [4624] = {.count = 1, .reusable = false}, SHIFT(2023), + [4626] = {.count = 1, .reusable = true}, SHIFT(2024), + [4628] = {.count = 1, .reusable = true}, SHIFT(2025), + [4630] = {.count = 1, .reusable = true}, SHIFT(2026), + [4632] = {.count = 1, .reusable = false}, SHIFT(2027), + [4634] = {.count = 1, .reusable = false}, SHIFT(2026), + [4636] = {.count = 1, .reusable = true}, SHIFT(2029), + [4638] = {.count = 1, .reusable = false}, SHIFT(2031), + [4640] = {.count = 1, .reusable = true}, SHIFT(2031), + [4642] = {.count = 1, .reusable = true}, SHIFT(2030), + [4644] = {.count = 1, .reusable = true}, SHIFT(2032), + [4646] = {.count = 1, .reusable = false}, SHIFT(2034), + [4648] = {.count = 1, .reusable = true}, SHIFT(2034), + [4650] = {.count = 1, .reusable = true}, SHIFT(2033), + [4652] = {.count = 1, .reusable = true}, SHIFT(2035), + [4654] = {.count = 1, .reusable = false}, SHIFT(2037), + [4656] = {.count = 1, .reusable = true}, SHIFT(2037), + [4658] = {.count = 1, .reusable = true}, SHIFT(2036), + [4660] = {.count = 1, .reusable = true}, SHIFT(2038), + [4662] = {.count = 1, .reusable = true}, SHIFT(2039), + [4664] = {.count = 1, .reusable = false}, SHIFT(2039), + [4666] = {.count = 1, .reusable = true}, SHIFT(2042), + [4668] = {.count = 1, .reusable = false}, SHIFT(2042), + [4670] = {.count = 1, .reusable = true}, SHIFT(2045), + [4672] = {.count = 1, .reusable = true}, SHIFT(2046), + [4674] = {.count = 1, .reusable = false}, SHIFT(2046), + [4676] = {.count = 1, .reusable = true}, SHIFT(2049), + [4678] = {.count = 1, .reusable = true}, SHIFT(2050), + [4680] = {.count = 1, .reusable = true}, SHIFT(2051), + [4682] = {.count = 1, .reusable = false}, SHIFT(2052), + [4684] = {.count = 1, .reusable = true}, SHIFT(2052), + [4686] = {.count = 1, .reusable = true}, SHIFT(2053), + [4688] = {.count = 1, .reusable = false}, SHIFT(2054), + [4690] = {.count = 1, .reusable = true}, SHIFT(2054), + [4692] = {.count = 1, .reusable = true}, SHIFT(2055), + [4694] = {.count = 1, .reusable = false}, SHIFT(2056), + [4696] = {.count = 1, .reusable = true}, SHIFT(2056), + [4698] = {.count = 1, .reusable = true}, SHIFT(2057), + [4700] = {.count = 1, .reusable = true}, SHIFT(2058), + [4702] = {.count = 1, .reusable = true}, SHIFT(2059), + [4704] = {.count = 1, .reusable = true}, SHIFT(2060), + [4706] = {.count = 1, .reusable = true}, SHIFT(2061), + [4708] = {.count = 1, .reusable = true}, SHIFT(2062), + [4710] = {.count = 1, .reusable = false}, SHIFT(2063), + [4712] = {.count = 1, .reusable = true}, SHIFT(2063), + [4714] = {.count = 1, .reusable = true}, SHIFT(2064), + [4716] = {.count = 1, .reusable = false}, SHIFT(2065), + [4718] = {.count = 1, .reusable = true}, SHIFT(2065), + [4720] = {.count = 1, .reusable = true}, SHIFT(2066), + [4722] = {.count = 1, .reusable = false}, SHIFT(2067), + [4724] = {.count = 1, .reusable = true}, SHIFT(2067), + [4726] = {.count = 1, .reusable = true}, SHIFT(2068), + [4728] = {.count = 1, .reusable = true}, SHIFT(2069), + [4730] = {.count = 1, .reusable = true}, SHIFT(2070), + [4732] = {.count = 1, .reusable = true}, SHIFT(2071), + [4734] = {.count = 1, .reusable = true}, SHIFT(2072), + [4736] = {.count = 1, .reusable = true}, SHIFT(2073), + [4738] = {.count = 1, .reusable = false}, SHIFT(2074), + [4740] = {.count = 1, .reusable = true}, SHIFT(2074), + [4742] = {.count = 1, .reusable = true}, SHIFT(2075), + [4744] = {.count = 1, .reusable = false}, SHIFT(2076), + [4746] = {.count = 1, .reusable = true}, SHIFT(2076), + [4748] = {.count = 1, .reusable = true}, SHIFT(2077), + [4750] = {.count = 1, .reusable = false}, SHIFT(2078), + [4752] = {.count = 1, .reusable = true}, SHIFT(2078), + [4754] = {.count = 1, .reusable = true}, SHIFT(2079), + [4756] = {.count = 1, .reusable = true}, SHIFT(2080), + [4758] = {.count = 1, .reusable = true}, SHIFT(2081), + [4760] = {.count = 1, .reusable = true}, SHIFT(2082), + [4762] = {.count = 1, .reusable = true}, SHIFT(2083), + [4764] = {.count = 1, .reusable = true}, SHIFT(2084), + [4766] = {.count = 1, .reusable = false}, SHIFT(2085), + [4768] = {.count = 1, .reusable = true}, SHIFT(2085), + [4770] = {.count = 1, .reusable = true}, SHIFT(2086), + [4772] = {.count = 1, .reusable = false}, SHIFT(2087), + [4774] = {.count = 1, .reusable = true}, SHIFT(2087), + [4776] = {.count = 1, .reusable = true}, SHIFT(2088), + [4778] = {.count = 1, .reusable = false}, SHIFT(2089), + [4780] = {.count = 1, .reusable = true}, SHIFT(2089), + [4782] = {.count = 1, .reusable = true}, SHIFT(2090), + [4784] = {.count = 1, .reusable = true}, SHIFT(2091), + [4786] = {.count = 1, .reusable = true}, SHIFT(2092), + [4788] = {.count = 1, .reusable = true}, SHIFT(2093), + [4790] = {.count = 1, .reusable = true}, SHIFT(2094), + [4792] = {.count = 1, .reusable = true}, SHIFT(2095), + [4794] = {.count = 1, .reusable = false}, SHIFT(2096), + [4796] = {.count = 1, .reusable = true}, SHIFT(2096), + [4798] = {.count = 1, .reusable = true}, SHIFT(2097), + [4800] = {.count = 1, .reusable = false}, SHIFT(2098), + [4802] = {.count = 1, .reusable = true}, SHIFT(2098), + [4804] = {.count = 1, .reusable = true}, SHIFT(2099), + [4806] = {.count = 1, .reusable = false}, SHIFT(2100), + [4808] = {.count = 1, .reusable = true}, SHIFT(2100), + [4810] = {.count = 1, .reusable = true}, SHIFT(2101), + [4812] = {.count = 1, .reusable = true}, SHIFT(2102), + [4814] = {.count = 1, .reusable = true}, SHIFT(2103), + [4816] = {.count = 1, .reusable = true}, SHIFT(2104), + [4818] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [4820] = {.count = 1, .reusable = true}, SHIFT(2105), + [4822] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [4824] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1300), + [4827] = {.count = 1, .reusable = false}, SHIFT(2106), + [4829] = {.count = 1, .reusable = true}, SHIFT(2107), + [4831] = {.count = 1, .reusable = false}, SHIFT(2108), + [4833] = {.count = 1, .reusable = true}, SHIFT(2109), + [4835] = {.count = 1, .reusable = true}, SHIFT(2111), + [4837] = {.count = 1, .reusable = true}, SHIFT(2112), + [4839] = {.count = 1, .reusable = false}, SHIFT(2114), + [4841] = {.count = 1, .reusable = true}, SHIFT(2114), + [4843] = {.count = 1, .reusable = true}, SHIFT(2113), + [4845] = {.count = 1, .reusable = true}, SHIFT(2115), + [4847] = {.count = 1, .reusable = false}, SHIFT(2117), + [4849] = {.count = 1, .reusable = true}, SHIFT(2117), + [4851] = {.count = 1, .reusable = true}, SHIFT(2116), + [4853] = {.count = 1, .reusable = false}, SHIFT(2119), + [4855] = {.count = 1, .reusable = true}, SHIFT(2119), + [4857] = {.count = 1, .reusable = true}, SHIFT(2118), + [4859] = {.count = 1, .reusable = true}, SHIFT(2120), + [4861] = {.count = 1, .reusable = true}, SHIFT(2121), + [4863] = {.count = 1, .reusable = true}, SHIFT(2122), + [4865] = {.count = 1, .reusable = true}, SHIFT(2123), + [4867] = {.count = 1, .reusable = true}, SHIFT(2124), + [4869] = {.count = 1, .reusable = true}, SHIFT(2125), + [4871] = {.count = 1, .reusable = true}, SHIFT(2126), + [4873] = {.count = 1, .reusable = false}, SHIFT(2126), + [4875] = {.count = 1, .reusable = true}, SHIFT(2127), + [4877] = {.count = 1, .reusable = false}, SHIFT(2127), + [4879] = {.count = 1, .reusable = true}, SHIFT(2128), + [4881] = {.count = 1, .reusable = true}, SHIFT(2129), + [4883] = {.count = 1, .reusable = false}, SHIFT(2129), + [4885] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4887] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4889] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [4891] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [4893] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4895] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4897] = {.count = 1, .reusable = true}, SHIFT(2130), + [4899] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4901] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4903] = {.count = 1, .reusable = true}, SHIFT(2131), + [4905] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4907] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4909] = {.count = 1, .reusable = true}, SHIFT(2132), + [4911] = {.count = 1, .reusable = true}, SHIFT(2133), + [4913] = {.count = 1, .reusable = true}, SHIFT(2134), + [4915] = {.count = 1, .reusable = false}, SHIFT(2135), + [4917] = {.count = 1, .reusable = true}, SHIFT(2136), + [4919] = {.count = 1, .reusable = true}, SHIFT(2138), + [4921] = {.count = 1, .reusable = true}, SHIFT(2139), + [4923] = {.count = 1, .reusable = true}, SHIFT(2140), + [4925] = {.count = 1, .reusable = true}, SHIFT(2141), + [4927] = {.count = 1, .reusable = true}, SHIFT(2142), + [4929] = {.count = 1, .reusable = true}, SHIFT(2143), + [4931] = {.count = 1, .reusable = false}, SHIFT(2144), + [4933] = {.count = 1, .reusable = true}, SHIFT(2144), + [4935] = {.count = 1, .reusable = true}, SHIFT(2145), + [4937] = {.count = 1, .reusable = false}, SHIFT(2146), + [4939] = {.count = 1, .reusable = true}, SHIFT(2146), + [4941] = {.count = 1, .reusable = true}, SHIFT(2147), + [4943] = {.count = 1, .reusable = false}, SHIFT(2148), + [4945] = {.count = 1, .reusable = true}, SHIFT(2148), + [4947] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4949] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4951] = {.count = 1, .reusable = true}, SHIFT(2149), + [4953] = {.count = 1, .reusable = true}, SHIFT(2150), + [4955] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [4957] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [4959] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4961] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4963] = {.count = 1, .reusable = true}, SHIFT(2151), + [4965] = {.count = 1, .reusable = true}, SHIFT(2152), + [4967] = {.count = 1, .reusable = true}, SHIFT(2154), + [4969] = {.count = 1, .reusable = true}, SHIFT(2155), + [4971] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1372), + [4974] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1373), + [4977] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1373), + [4980] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1374), + [4983] = {.count = 1, .reusable = true}, SHIFT(2157), + [4985] = {.count = 1, .reusable = true}, SHIFT(2158), + [4987] = {.count = 1, .reusable = false}, SHIFT(2159), + [4989] = {.count = 1, .reusable = true}, SHIFT(2160), + [4991] = {.count = 1, .reusable = true}, SHIFT(2162), + [4993] = {.count = 1, .reusable = true}, SHIFT(2163), + [4995] = {.count = 1, .reusable = true}, SHIFT(2164), + [4997] = {.count = 1, .reusable = true}, SHIFT(2165), + [4999] = {.count = 1, .reusable = true}, SHIFT(2166), + [5001] = {.count = 1, .reusable = true}, SHIFT(2167), + [5003] = {.count = 1, .reusable = false}, SHIFT(2168), + [5005] = {.count = 1, .reusable = true}, SHIFT(2168), + [5007] = {.count = 1, .reusable = true}, SHIFT(2169), + [5009] = {.count = 1, .reusable = false}, SHIFT(2170), + [5011] = {.count = 1, .reusable = true}, SHIFT(2170), + [5013] = {.count = 1, .reusable = true}, SHIFT(2171), + [5015] = {.count = 1, .reusable = false}, SHIFT(2172), + [5017] = {.count = 1, .reusable = true}, SHIFT(2172), + [5019] = {.count = 1, .reusable = true}, SHIFT(2173), + [5021] = {.count = 1, .reusable = true}, SHIFT(2174), + [5023] = {.count = 1, .reusable = false}, SHIFT(2175), + [5025] = {.count = 1, .reusable = true}, SHIFT(2176), + [5027] = {.count = 1, .reusable = true}, SHIFT(2178), + [5029] = {.count = 1, .reusable = true}, SHIFT(2179), + [5031] = {.count = 1, .reusable = true}, SHIFT(2180), + [5033] = {.count = 1, .reusable = true}, SHIFT(2181), + [5035] = {.count = 1, .reusable = true}, SHIFT(2182), + [5037] = {.count = 1, .reusable = true}, SHIFT(2183), + [5039] = {.count = 1, .reusable = false}, SHIFT(2184), + [5041] = {.count = 1, .reusable = true}, SHIFT(2184), + [5043] = {.count = 1, .reusable = true}, SHIFT(2185), + [5045] = {.count = 1, .reusable = false}, SHIFT(2186), + [5047] = {.count = 1, .reusable = true}, SHIFT(2186), + [5049] = {.count = 1, .reusable = true}, SHIFT(2187), + [5051] = {.count = 1, .reusable = false}, SHIFT(2188), + [5053] = {.count = 1, .reusable = true}, SHIFT(2188), + [5055] = {.count = 1, .reusable = true}, SHIFT(2189), + [5057] = {.count = 1, .reusable = true}, SHIFT(2190), + [5059] = {.count = 1, .reusable = true}, SHIFT(2191), + [5061] = {.count = 1, .reusable = true}, SHIFT(2192), + [5063] = {.count = 1, .reusable = true}, SHIFT(2193), + [5065] = {.count = 1, .reusable = false}, SHIFT(2194), + [5067] = {.count = 1, .reusable = true}, SHIFT(2194), + [5069] = {.count = 1, .reusable = true}, SHIFT(2195), + [5071] = {.count = 1, .reusable = false}, SHIFT(2196), + [5073] = {.count = 1, .reusable = true}, SHIFT(2196), + [5075] = {.count = 1, .reusable = true}, SHIFT(2197), + [5077] = {.count = 1, .reusable = false}, SHIFT(2198), + [5079] = {.count = 1, .reusable = true}, SHIFT(2198), + [5081] = {.count = 1, .reusable = true}, SHIFT(2199), + [5083] = {.count = 1, .reusable = true}, SHIFT(2200), + [5085] = {.count = 1, .reusable = true}, SHIFT(2201), + [5087] = {.count = 1, .reusable = true}, SHIFT(2202), + [5089] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1458), + [5092] = {.count = 1, .reusable = false}, SHIFT(2203), + [5094] = {.count = 1, .reusable = true}, SHIFT(2204), + [5096] = {.count = 1, .reusable = false}, SHIFT(2205), + [5098] = {.count = 1, .reusable = true}, SHIFT(2206), + [5100] = {.count = 1, .reusable = true}, SHIFT(2208), + [5102] = {.count = 1, .reusable = true}, SHIFT(2209), + [5104] = {.count = 1, .reusable = false}, SHIFT(2211), + [5106] = {.count = 1, .reusable = true}, SHIFT(2211), + [5108] = {.count = 1, .reusable = true}, SHIFT(2210), + [5110] = {.count = 1, .reusable = true}, SHIFT(2212), + [5112] = {.count = 1, .reusable = false}, SHIFT(2214), + [5114] = {.count = 1, .reusable = true}, SHIFT(2214), + [5116] = {.count = 1, .reusable = true}, SHIFT(2213), + [5118] = {.count = 1, .reusable = false}, SHIFT(2216), + [5120] = {.count = 1, .reusable = true}, SHIFT(2216), + [5122] = {.count = 1, .reusable = true}, SHIFT(2215), + [5124] = {.count = 1, .reusable = true}, SHIFT(2217), + [5126] = {.count = 1, .reusable = true}, SHIFT(2218), + [5128] = {.count = 1, .reusable = true}, SHIFT(2219), + [5130] = {.count = 1, .reusable = true}, SHIFT(2220), + [5132] = {.count = 1, .reusable = true}, SHIFT(2221), + [5134] = {.count = 1, .reusable = true}, SHIFT(2222), + [5136] = {.count = 1, .reusable = true}, SHIFT(2223), + [5138] = {.count = 1, .reusable = false}, SHIFT(2223), + [5140] = {.count = 1, .reusable = true}, SHIFT(2224), + [5142] = {.count = 1, .reusable = false}, SHIFT(2224), + [5144] = {.count = 1, .reusable = true}, SHIFT(2225), + [5146] = {.count = 1, .reusable = true}, SHIFT(2226), + [5148] = {.count = 1, .reusable = false}, SHIFT(2226), + [5150] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), + [5152] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), + [5154] = {.count = 1, .reusable = true}, SHIFT(2228), + [5156] = {.count = 1, .reusable = true}, SHIFT(2229), + [5158] = {.count = 1, .reusable = true}, SHIFT(2230), + [5160] = {.count = 1, .reusable = false}, SHIFT(2231), + [5162] = {.count = 1, .reusable = true}, SHIFT(2231), + [5164] = {.count = 1, .reusable = true}, SHIFT(2232), + [5166] = {.count = 1, .reusable = false}, SHIFT(2233), + [5168] = {.count = 1, .reusable = true}, SHIFT(2233), + [5170] = {.count = 1, .reusable = true}, SHIFT(2234), + [5172] = {.count = 1, .reusable = false}, SHIFT(2235), + [5174] = {.count = 1, .reusable = true}, SHIFT(2235), + [5176] = {.count = 1, .reusable = true}, SHIFT(2236), + [5178] = {.count = 1, .reusable = true}, SHIFT(2237), + [5180] = {.count = 1, .reusable = true}, SHIFT(2238), + [5182] = {.count = 1, .reusable = true}, SHIFT(2239), + [5184] = {.count = 1, .reusable = true}, SHIFT(2240), + [5186] = {.count = 1, .reusable = true}, SHIFT(2241), + [5188] = {.count = 1, .reusable = false}, SHIFT(2242), + [5190] = {.count = 1, .reusable = true}, SHIFT(2243), + [5192] = {.count = 1, .reusable = true}, SHIFT(2245), + [5194] = {.count = 1, .reusable = true}, SHIFT(2246), + [5196] = {.count = 1, .reusable = true}, SHIFT(2247), + [5198] = {.count = 1, .reusable = true}, SHIFT(2248), + [5200] = {.count = 1, .reusable = true}, SHIFT(2249), + [5202] = {.count = 1, .reusable = true}, SHIFT(2250), + [5204] = {.count = 1, .reusable = false}, SHIFT(2251), + [5206] = {.count = 1, .reusable = true}, SHIFT(2251), + [5208] = {.count = 1, .reusable = true}, SHIFT(2252), + [5210] = {.count = 1, .reusable = false}, SHIFT(2253), + [5212] = {.count = 1, .reusable = true}, SHIFT(2253), + [5214] = {.count = 1, .reusable = true}, SHIFT(2254), + [5216] = {.count = 1, .reusable = false}, SHIFT(2255), + [5218] = {.count = 1, .reusable = true}, SHIFT(2255), + [5220] = {.count = 1, .reusable = true}, SHIFT(2256), + [5222] = {.count = 1, .reusable = true}, SHIFT(2257), + [5224] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [5226] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [5228] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [5230] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [5232] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [5234] = {.count = 1, .reusable = true}, SHIFT(2258), + [5236] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [5238] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5240] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5242] = {.count = 1, .reusable = true}, SHIFT(2260), + [5244] = {.count = 1, .reusable = true}, SHIFT(2263), + [5246] = {.count = 1, .reusable = true}, SHIFT(2264), + [5248] = {.count = 1, .reusable = true}, SHIFT(2265), + [5250] = {.count = 1, .reusable = false}, SHIFT(2266), + [5252] = {.count = 1, .reusable = true}, SHIFT(2267), + [5254] = {.count = 1, .reusable = true}, SHIFT(2268), + [5256] = {.count = 1, .reusable = true}, SHIFT(2269), + [5258] = {.count = 1, .reusable = true}, SHIFT(2270), + [5260] = {.count = 1, .reusable = true}, SHIFT(2271), + [5262] = {.count = 1, .reusable = false}, SHIFT(2272), + [5264] = {.count = 1, .reusable = false}, SHIFT(2267), + [5266] = {.count = 1, .reusable = true}, SHIFT(2275), + [5268] = {.count = 1, .reusable = true}, SHIFT(2276), + [5270] = {.count = 1, .reusable = false}, SHIFT(2277), + [5272] = {.count = 1, .reusable = true}, SHIFT(2278), + [5274] = {.count = 1, .reusable = true}, SHIFT(2279), + [5276] = {.count = 1, .reusable = true}, SHIFT(2280), + [5278] = {.count = 1, .reusable = true}, SHIFT(2281), + [5280] = {.count = 1, .reusable = true}, SHIFT(2282), + [5282] = {.count = 1, .reusable = false}, SHIFT(2283), + [5284] = {.count = 1, .reusable = false}, SHIFT(2278), + [5286] = {.count = 1, .reusable = true}, SHIFT(2285), + [5288] = {.count = 1, .reusable = false}, SHIFT(2287), + [5290] = {.count = 1, .reusable = false}, SHIFT(2288), + [5292] = {.count = 1, .reusable = true}, SHIFT(2290), + [5294] = {.count = 1, .reusable = true}, SHIFT(2291), + [5296] = {.count = 1, .reusable = false}, SHIFT(2292), + [5298] = {.count = 1, .reusable = false}, SHIFT(2290), + [5300] = {.count = 1, .reusable = true}, SHIFT(2293), + [5302] = {.count = 1, .reusable = true}, SHIFT(2294), + [5304] = {.count = 1, .reusable = true}, SHIFT(2295), + [5306] = {.count = 1, .reusable = false}, SHIFT(2296), + [5308] = {.count = 1, .reusable = false}, SHIFT(2295), + [5310] = {.count = 1, .reusable = true}, SHIFT(2307), + [5312] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [5314] = {.count = 1, .reusable = false}, SHIFT(2308), + [5316] = {.count = 1, .reusable = true}, SHIFT(2309), + [5318] = {.count = 1, .reusable = true}, SHIFT(2308), + [5320] = {.count = 1, .reusable = true}, SHIFT(2310), + [5322] = {.count = 1, .reusable = false}, SHIFT(2311), + [5324] = {.count = 1, .reusable = true}, SHIFT(2311), + [5326] = {.count = 1, .reusable = true}, SHIFT(2312), + [5328] = {.count = 1, .reusable = false}, SHIFT(2313), + [5330] = {.count = 1, .reusable = false}, SHIFT(2314), + [5332] = {.count = 1, .reusable = true}, SHIFT(2314), + [5334] = {.count = 1, .reusable = true}, SHIFT(2315), + [5336] = {.count = 1, .reusable = true}, SHIFT(2316), + [5338] = {.count = 1, .reusable = true}, SHIFT(2317), + [5340] = {.count = 1, .reusable = false}, SHIFT(2317), + [5342] = {.count = 1, .reusable = true}, SHIFT(2320), + [5344] = {.count = 1, .reusable = true}, SHIFT(1960), + [5346] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1544), + [5349] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [5351] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [5353] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [5355] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), + [5357] = {.count = 1, .reusable = true}, SHIFT(2326), + [5359] = {.count = 1, .reusable = true}, SHIFT(2327), + [5361] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5363] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [5365] = {.count = 1, .reusable = true}, SHIFT(2331), + [5367] = {.count = 1, .reusable = true}, SHIFT(2333), + [5369] = {.count = 1, .reusable = true}, SHIFT(2335), + [5371] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5373] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [5375] = {.count = 1, .reusable = true}, SHIFT(2336), + [5377] = {.count = 1, .reusable = true}, SHIFT(2337), + [5379] = {.count = 1, .reusable = true}, SHIFT(2338), + [5381] = {.count = 1, .reusable = true}, SHIFT(2339), + [5383] = {.count = 1, .reusable = true}, SHIFT(2342), + [5385] = {.count = 1, .reusable = true}, SHIFT(2343), + [5387] = {.count = 1, .reusable = true}, SHIFT(2344), + [5389] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1616), + [5392] = {.count = 1, .reusable = false}, SHIFT(2345), + [5394] = {.count = 1, .reusable = true}, SHIFT(2346), + [5396] = {.count = 1, .reusable = false}, SHIFT(2347), + [5398] = {.count = 1, .reusable = true}, SHIFT(2348), + [5400] = {.count = 1, .reusable = true}, SHIFT(2350), + [5402] = {.count = 1, .reusable = true}, SHIFT(2351), + [5404] = {.count = 1, .reusable = false}, SHIFT(2353), + [5406] = {.count = 1, .reusable = true}, SHIFT(2353), + [5408] = {.count = 1, .reusable = true}, SHIFT(2352), + [5410] = {.count = 1, .reusable = true}, SHIFT(2354), + [5412] = {.count = 1, .reusable = false}, SHIFT(2356), + [5414] = {.count = 1, .reusable = true}, SHIFT(2356), + [5416] = {.count = 1, .reusable = true}, SHIFT(2355), + [5418] = {.count = 1, .reusable = false}, SHIFT(2358), + [5420] = {.count = 1, .reusable = true}, SHIFT(2358), + [5422] = {.count = 1, .reusable = true}, SHIFT(2357), + [5424] = {.count = 1, .reusable = true}, SHIFT(2359), + [5426] = {.count = 1, .reusable = true}, SHIFT(2360), + [5428] = {.count = 1, .reusable = true}, SHIFT(2361), + [5430] = {.count = 1, .reusable = true}, SHIFT(2362), + [5432] = {.count = 1, .reusable = true}, SHIFT(2363), + [5434] = {.count = 1, .reusable = true}, SHIFT(2364), + [5436] = {.count = 1, .reusable = true}, SHIFT(2365), + [5438] = {.count = 1, .reusable = false}, SHIFT(2365), + [5440] = {.count = 1, .reusable = true}, SHIFT(2366), + [5442] = {.count = 1, .reusable = false}, SHIFT(2366), + [5444] = {.count = 1, .reusable = true}, SHIFT(2367), + [5446] = {.count = 1, .reusable = true}, SHIFT(2368), + [5448] = {.count = 1, .reusable = false}, SHIFT(2368), + [5450] = {.count = 1, .reusable = true}, SHIFT(2369), + [5452] = {.count = 1, .reusable = true}, SHIFT(2370), + [5454] = {.count = 1, .reusable = true}, SHIFT(2371), + [5456] = {.count = 1, .reusable = true}, SHIFT(2372), + [5458] = {.count = 1, .reusable = true}, SHIFT(2373), + [5460] = {.count = 1, .reusable = true}, SHIFT(2374), + [5462] = {.count = 1, .reusable = true}, SHIFT(2375), + [5464] = {.count = 1, .reusable = true}, SHIFT(2376), + [5466] = {.count = 1, .reusable = true}, SHIFT(2377), + [5468] = {.count = 1, .reusable = true}, SHIFT(2378), + [5470] = {.count = 1, .reusable = true}, SHIFT(2379), + [5472] = {.count = 1, .reusable = true}, SHIFT(2380), + [5474] = {.count = 1, .reusable = true}, SHIFT(2381), + [5476] = {.count = 1, .reusable = true}, SHIFT(2382), + [5478] = {.count = 1, .reusable = true}, SHIFT(2383), + [5480] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [5482] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [5484] = {.count = 1, .reusable = true}, SHIFT(2384), + [5486] = {.count = 1, .reusable = true}, SHIFT(2385), + [5488] = {.count = 1, .reusable = false}, SHIFT(2386), + [5490] = {.count = 1, .reusable = true}, SHIFT(2387), + [5492] = {.count = 1, .reusable = true}, SHIFT(2389), + [5494] = {.count = 1, .reusable = true}, SHIFT(2390), + [5496] = {.count = 1, .reusable = true}, SHIFT(2391), + [5498] = {.count = 1, .reusable = true}, SHIFT(2392), + [5500] = {.count = 1, .reusable = true}, SHIFT(2393), + [5502] = {.count = 1, .reusable = true}, SHIFT(2394), + [5504] = {.count = 1, .reusable = false}, SHIFT(2395), + [5506] = {.count = 1, .reusable = true}, SHIFT(2395), + [5508] = {.count = 1, .reusable = true}, SHIFT(2396), + [5510] = {.count = 1, .reusable = false}, SHIFT(2397), + [5512] = {.count = 1, .reusable = true}, SHIFT(2397), + [5514] = {.count = 1, .reusable = true}, SHIFT(2398), + [5516] = {.count = 1, .reusable = false}, SHIFT(2399), [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 = false}, SHIFT(2424), - [5556] = {.count = 1, .reusable = true}, SHIFT(2425), - [5558] = {.count = 1, .reusable = true}, SHIFT(2427), - [5560] = {.count = 1, .reusable = true}, SHIFT(2428), - [5562] = {.count = 1, .reusable = true}, SHIFT(2429), - [5564] = {.count = 1, .reusable = true}, SHIFT(2430), - [5566] = {.count = 1, .reusable = true}, SHIFT(2431), - [5568] = {.count = 1, .reusable = true}, SHIFT(2432), - [5570] = {.count = 1, .reusable = false}, SHIFT(2433), - [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 = false}, SHIFT(2443), - [5598] = {.count = 1, .reusable = true}, SHIFT(2443), - [5600] = {.count = 1, .reusable = true}, SHIFT(2444), - [5602] = {.count = 1, .reusable = false}, SHIFT(2445), - [5604] = {.count = 1, .reusable = true}, SHIFT(2445), - [5606] = {.count = 1, .reusable = true}, SHIFT(2446), - [5608] = {.count = 1, .reusable = false}, SHIFT(2447), - [5610] = {.count = 1, .reusable = true}, SHIFT(2447), - [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 = false}, SHIFT(2463), - [5644] = {.count = 1, .reusable = true}, SHIFT(2463), - [5646] = {.count = 1, .reusable = true}, SHIFT(2464), - [5648] = {.count = 1, .reusable = false}, SHIFT(2465), - [5650] = {.count = 1, .reusable = true}, SHIFT(2465), - [5652] = {.count = 1, .reusable = true}, SHIFT(2466), - [5654] = {.count = 1, .reusable = false}, SHIFT(2467), - [5656] = {.count = 1, .reusable = true}, SHIFT(2467), - [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 = true}, SHIFT(2490), - [5708] = {.count = 1, .reusable = false}, SHIFT(2491), - [5710] = {.count = 1, .reusable = false}, SHIFT(2490), - [5712] = {.count = 1, .reusable = true}, SHIFT(2493), - [5714] = {.count = 1, .reusable = false}, SHIFT(2495), - [5716] = {.count = 1, .reusable = true}, SHIFT(2495), - [5718] = {.count = 1, .reusable = true}, SHIFT(2494), - [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 = true}, SHIFT(2519), - [5802] = {.count = 1, .reusable = false}, SHIFT(2520), - [5804] = {.count = 1, .reusable = false}, SHIFT(2519), - [5806] = {.count = 1, .reusable = true}, SHIFT(2522), - [5808] = {.count = 1, .reusable = false}, SHIFT(2524), - [5810] = {.count = 1, .reusable = true}, SHIFT(2524), - [5812] = {.count = 1, .reusable = true}, SHIFT(2523), - [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 = false}, SHIFT(2563), - [5927] = {.count = 1, .reusable = true}, SHIFT(2563), - [5929] = {.count = 1, .reusable = true}, SHIFT(2564), - [5931] = {.count = 1, .reusable = false}, SHIFT(2565), - [5933] = {.count = 1, .reusable = true}, SHIFT(2565), - [5935] = {.count = 1, .reusable = true}, SHIFT(2566), - [5937] = {.count = 1, .reusable = false}, SHIFT(2567), - [5939] = {.count = 1, .reusable = true}, SHIFT(2567), - [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 = false}, SHIFT(2598), - [5998] = {.count = 1, .reusable = true}, SHIFT(2598), - [6000] = {.count = 1, .reusable = true}, SHIFT(2597), - [6002] = {.count = 1, .reusable = true}, SHIFT(2599), - [6004] = {.count = 1, .reusable = false}, SHIFT(2601), - [6006] = {.count = 1, .reusable = true}, SHIFT(2601), - [6008] = {.count = 1, .reusable = true}, SHIFT(2600), - [6010] = {.count = 1, .reusable = false}, SHIFT(2603), - [6012] = {.count = 1, .reusable = true}, SHIFT(2603), - [6014] = {.count = 1, .reusable = true}, SHIFT(2602), - [6016] = {.count = 1, .reusable = true}, SHIFT(2604), - [6018] = {.count = 1, .reusable = true}, SHIFT(2605), - [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 = false}, SHIFT(2622), - [6063] = {.count = 1, .reusable = true}, SHIFT(2622), - [6065] = {.count = 1, .reusable = true}, SHIFT(2621), - [6067] = {.count = 1, .reusable = true}, SHIFT(2623), - [6069] = {.count = 1, .reusable = false}, SHIFT(2625), - [6071] = {.count = 1, .reusable = true}, SHIFT(2625), - [6073] = {.count = 1, .reusable = true}, SHIFT(2624), - [6075] = {.count = 1, .reusable = false}, SHIFT(2627), - [6077] = {.count = 1, .reusable = true}, SHIFT(2627), - [6079] = {.count = 1, .reusable = true}, SHIFT(2626), - [6081] = {.count = 1, .reusable = true}, SHIFT(2628), - [6083] = {.count = 1, .reusable = true}, SHIFT(2629), - [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 = false}, SHIFT(2659), - [6162] = {.count = 1, .reusable = true}, SHIFT(2660), - [6164] = {.count = 1, .reusable = true}, SHIFT(2662), - [6166] = {.count = 1, .reusable = true}, SHIFT(2663), - [6168] = {.count = 1, .reusable = true}, SHIFT(2664), - [6170] = {.count = 1, .reusable = true}, SHIFT(2665), - [6172] = {.count = 1, .reusable = true}, SHIFT(2666), - [6174] = {.count = 1, .reusable = true}, SHIFT(2667), - [6176] = {.count = 1, .reusable = false}, SHIFT(2668), - [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 = false}, SHIFT(2677), - [6202] = {.count = 1, .reusable = true}, SHIFT(2678), - [6204] = {.count = 1, .reusable = true}, SHIFT(2680), - [6206] = {.count = 1, .reusable = true}, SHIFT(2681), - [6208] = {.count = 1, .reusable = true}, SHIFT(2682), - [6210] = {.count = 1, .reusable = true}, SHIFT(2683), - [6212] = {.count = 1, .reusable = true}, SHIFT(2684), - [6214] = {.count = 1, .reusable = true}, SHIFT(2685), - [6216] = {.count = 1, .reusable = false}, SHIFT(2686), - [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 = false}, SHIFT(2700), - [6248] = {.count = 1, .reusable = true}, SHIFT(2700), - [6250] = {.count = 1, .reusable = true}, SHIFT(2701), - [6252] = {.count = 1, .reusable = false}, SHIFT(2702), - [6254] = {.count = 1, .reusable = true}, SHIFT(2702), - [6256] = {.count = 1, .reusable = true}, SHIFT(2703), - [6258] = {.count = 1, .reusable = false}, SHIFT(2704), - [6260] = {.count = 1, .reusable = true}, SHIFT(2704), - [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 = false}, SHIFT(2711), - [6276] = {.count = 1, .reusable = true}, SHIFT(2711), - [6278] = {.count = 1, .reusable = true}, SHIFT(2712), - [6280] = {.count = 1, .reusable = false}, SHIFT(2713), - [6282] = {.count = 1, .reusable = true}, SHIFT(2713), - [6284] = {.count = 1, .reusable = true}, SHIFT(2714), - [6286] = {.count = 1, .reusable = false}, SHIFT(2715), - [6288] = {.count = 1, .reusable = true}, SHIFT(2715), - [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), + [5520] = {.count = 1, .reusable = true}, SHIFT(2400), + [5522] = {.count = 1, .reusable = true}, SHIFT(2401), + [5524] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5526] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5528] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5530] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5532] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5534] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5536] = {.count = 1, .reusable = true}, SHIFT(2402), + [5538] = {.count = 1, .reusable = true}, SHIFT(2403), + [5540] = {.count = 1, .reusable = true}, SHIFT(2404), + [5542] = {.count = 1, .reusable = false}, SHIFT(2405), + [5544] = {.count = 1, .reusable = true}, SHIFT(2405), + [5546] = {.count = 1, .reusable = true}, SHIFT(2406), + [5548] = {.count = 1, .reusable = false}, SHIFT(2407), + [5550] = {.count = 1, .reusable = true}, SHIFT(2407), + [5552] = {.count = 1, .reusable = true}, SHIFT(2408), + [5554] = {.count = 1, .reusable = false}, SHIFT(2409), + [5556] = {.count = 1, .reusable = true}, SHIFT(2409), + [5558] = {.count = 1, .reusable = true}, SHIFT(2410), + [5560] = {.count = 1, .reusable = true}, SHIFT(2411), + [5562] = {.count = 1, .reusable = true}, SHIFT(2412), + [5564] = {.count = 1, .reusable = true}, SHIFT(2415), + [5566] = {.count = 1, .reusable = true}, SHIFT(2416), + [5568] = {.count = 1, .reusable = true}, SHIFT(2417), + [5570] = {.count = 1, .reusable = false}, SHIFT(2418), + [5572] = {.count = 1, .reusable = true}, SHIFT(2418), + [5574] = {.count = 1, .reusable = true}, SHIFT(2419), + [5576] = {.count = 1, .reusable = false}, SHIFT(2420), + [5578] = {.count = 1, .reusable = true}, SHIFT(2420), + [5580] = {.count = 1, .reusable = true}, SHIFT(2421), + [5582] = {.count = 1, .reusable = false}, SHIFT(2422), + [5584] = {.count = 1, .reusable = true}, SHIFT(2422), + [5586] = {.count = 1, .reusable = true}, SHIFT(2423), + [5588] = {.count = 1, .reusable = true}, SHIFT(2424), + [5590] = {.count = 1, .reusable = true}, SHIFT(2425), + [5592] = {.count = 1, .reusable = true}, SHIFT(2426), + [5594] = {.count = 1, .reusable = true}, SHIFT(2427), + [5596] = {.count = 1, .reusable = true}, SHIFT(2428), + [5598] = {.count = 1, .reusable = false}, SHIFT(2429), + [5600] = {.count = 1, .reusable = true}, SHIFT(2429), + [5602] = {.count = 1, .reusable = true}, SHIFT(2430), + [5604] = {.count = 1, .reusable = false}, SHIFT(2431), + [5606] = {.count = 1, .reusable = true}, SHIFT(2431), + [5608] = {.count = 1, .reusable = true}, SHIFT(2432), + [5610] = {.count = 1, .reusable = false}, SHIFT(2433), + [5612] = {.count = 1, .reusable = true}, SHIFT(2433), + [5614] = {.count = 1, .reusable = true}, SHIFT(2434), + [5616] = {.count = 1, .reusable = true}, SHIFT(2435), + [5618] = {.count = 1, .reusable = true}, SHIFT(2436), + [5620] = {.count = 1, .reusable = true}, SHIFT(2437), + [5622] = {.count = 1, .reusable = true}, SHIFT(2438), + [5624] = {.count = 1, .reusable = true}, SHIFT(2439), + [5626] = {.count = 1, .reusable = true}, SHIFT(2440), + [5628] = {.count = 1, .reusable = true}, SHIFT(2441), + [5630] = {.count = 1, .reusable = false}, SHIFT(2442), + [5632] = {.count = 1, .reusable = true}, SHIFT(2443), + [5634] = {.count = 1, .reusable = true}, SHIFT(2445), + [5636] = {.count = 1, .reusable = true}, SHIFT(2446), + [5638] = {.count = 1, .reusable = true}, SHIFT(2447), + [5640] = {.count = 1, .reusable = true}, SHIFT(2448), + [5642] = {.count = 1, .reusable = true}, SHIFT(2449), + [5644] = {.count = 1, .reusable = true}, SHIFT(2450), + [5646] = {.count = 1, .reusable = false}, SHIFT(2451), + [5648] = {.count = 1, .reusable = true}, SHIFT(2451), + [5650] = {.count = 1, .reusable = true}, SHIFT(2452), + [5652] = {.count = 1, .reusable = false}, SHIFT(2453), + [5654] = {.count = 1, .reusable = true}, SHIFT(2453), + [5656] = {.count = 1, .reusable = true}, SHIFT(2454), + [5658] = {.count = 1, .reusable = false}, SHIFT(2455), + [5660] = {.count = 1, .reusable = true}, SHIFT(2455), + [5662] = {.count = 1, .reusable = true}, SHIFT(2456), + [5664] = {.count = 1, .reusable = true}, SHIFT(2457), + [5666] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), + [5668] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), + [5670] = {.count = 1, .reusable = true}, SHIFT(2458), + [5672] = {.count = 1, .reusable = true}, SHIFT(2459), + [5674] = {.count = 1, .reusable = true}, SHIFT(2460), + [5676] = {.count = 1, .reusable = true}, SHIFT(2462), + [5678] = {.count = 1, .reusable = true}, SHIFT(2463), + [5680] = {.count = 1, .reusable = true}, SHIFT(2464), + [5682] = {.count = 1, .reusable = false}, SHIFT(2465), + [5684] = {.count = 1, .reusable = true}, SHIFT(2465), + [5686] = {.count = 1, .reusable = true}, SHIFT(2466), + [5688] = {.count = 1, .reusable = false}, SHIFT(2467), + [5690] = {.count = 1, .reusable = true}, SHIFT(2467), + [5692] = {.count = 1, .reusable = true}, SHIFT(2468), + [5694] = {.count = 1, .reusable = false}, SHIFT(2469), + [5696] = {.count = 1, .reusable = true}, SHIFT(2469), + [5698] = {.count = 1, .reusable = true}, SHIFT(2470), + [5700] = {.count = 1, .reusable = true}, SHIFT(2471), + [5702] = {.count = 1, .reusable = true}, SHIFT(2472), + [5704] = {.count = 1, .reusable = true}, SHIFT(2473), + [5706] = {.count = 1, .reusable = true}, SHIFT(2474), + [5708] = {.count = 1, .reusable = true}, SHIFT(2475), + [5710] = {.count = 1, .reusable = true}, SHIFT(2476), + [5712] = {.count = 1, .reusable = false}, SHIFT(2477), + [5714] = {.count = 1, .reusable = true}, SHIFT(2478), + [5716] = {.count = 1, .reusable = true}, SHIFT(2479), + [5718] = {.count = 1, .reusable = true}, SHIFT(2480), + [5720] = {.count = 1, .reusable = true}, SHIFT(2481), + [5722] = {.count = 1, .reusable = true}, SHIFT(2482), + [5724] = {.count = 1, .reusable = true}, SHIFT(2484), + [5726] = {.count = 1, .reusable = true}, SHIFT(2486), + [5728] = {.count = 1, .reusable = true}, SHIFT(2487), + [5730] = {.count = 1, .reusable = true}, SHIFT(2488), + [5732] = {.count = 1, .reusable = false}, SHIFT(2490), + [5734] = {.count = 1, .reusable = false}, SHIFT(2491), + [5736] = {.count = 1, .reusable = true}, SHIFT(2493), + [5738] = {.count = 1, .reusable = true}, SHIFT(2494), + [5740] = {.count = 1, .reusable = false}, SHIFT(2495), + [5742] = {.count = 1, .reusable = false}, SHIFT(2493), + [5744] = {.count = 1, .reusable = true}, SHIFT(2496), + [5746] = {.count = 1, .reusable = true}, SHIFT(2497), + [5748] = {.count = 1, .reusable = true}, SHIFT(2498), + [5750] = {.count = 1, .reusable = false}, SHIFT(2499), + [5752] = {.count = 1, .reusable = false}, SHIFT(2498), + [5754] = {.count = 1, .reusable = true}, SHIFT(2511), + [5756] = {.count = 1, .reusable = false}, SHIFT(2513), + [5758] = {.count = 1, .reusable = false}, SHIFT(2514), + [5760] = {.count = 1, .reusable = true}, SHIFT(2516), + [5762] = {.count = 1, .reusable = true}, SHIFT(2517), + [5764] = {.count = 1, .reusable = false}, SHIFT(2518), + [5766] = {.count = 1, .reusable = false}, SHIFT(2516), + [5768] = {.count = 1, .reusable = true}, SHIFT(2519), + [5770] = {.count = 1, .reusable = true}, SHIFT(2520), + [5772] = {.count = 1, .reusable = true}, SHIFT(2521), + [5774] = {.count = 1, .reusable = false}, SHIFT(2522), + [5776] = {.count = 1, .reusable = false}, SHIFT(2521), + [5778] = {.count = 1, .reusable = true}, SHIFT(2534), + [5780] = {.count = 1, .reusable = false}, SHIFT(2536), + [5782] = {.count = 1, .reusable = false}, SHIFT(2537), + [5784] = {.count = 1, .reusable = true}, SHIFT(2538), + [5786] = {.count = 1, .reusable = true}, SHIFT(2539), + [5788] = {.count = 1, .reusable = true}, SHIFT(2540), + [5790] = {.count = 1, .reusable = false}, SHIFT(2541), + [5792] = {.count = 1, .reusable = false}, SHIFT(2540), + [5794] = {.count = 1, .reusable = true}, SHIFT(2543), + [5796] = {.count = 1, .reusable = false}, SHIFT(2545), + [5798] = {.count = 1, .reusable = true}, SHIFT(2545), + [5800] = {.count = 1, .reusable = true}, SHIFT(2544), + [5802] = {.count = 1, .reusable = true}, SHIFT(2546), + [5804] = {.count = 1, .reusable = false}, SHIFT(2548), + [5806] = {.count = 1, .reusable = true}, SHIFT(2548), + [5808] = {.count = 1, .reusable = true}, SHIFT(2547), + [5810] = {.count = 1, .reusable = true}, SHIFT(2549), + [5812] = {.count = 1, .reusable = false}, SHIFT(2551), + [5814] = {.count = 1, .reusable = true}, SHIFT(2551), + [5816] = {.count = 1, .reusable = true}, SHIFT(2550), + [5818] = {.count = 1, .reusable = true}, SHIFT(2552), + [5820] = {.count = 1, .reusable = true}, SHIFT(2553), + [5822] = {.count = 1, .reusable = false}, SHIFT(2553), + [5824] = {.count = 1, .reusable = true}, SHIFT(2556), + [5826] = {.count = 1, .reusable = false}, SHIFT(2556), + [5828] = {.count = 1, .reusable = true}, SHIFT(2559), + [5830] = {.count = 1, .reusable = true}, SHIFT(2560), + [5832] = {.count = 1, .reusable = false}, SHIFT(2560), + [5834] = {.count = 1, .reusable = true}, SHIFT(2563), + [5836] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [5838] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5840] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5842] = {.count = 1, .reusable = false}, SHIFT(2567), + [5844] = {.count = 1, .reusable = true}, SHIFT(2567), + [5846] = {.count = 1, .reusable = false}, SHIFT(2568), + [5848] = {.count = 1, .reusable = false}, SHIFT(1961), + [5850] = {.count = 1, .reusable = false}, SHIFT(2569), + [5852] = {.count = 1, .reusable = false}, SHIFT(1964), + [5854] = {.count = 1, .reusable = false}, SHIFT(1965), + [5856] = {.count = 1, .reusable = false}, SHIFT(1966), + [5858] = {.count = 1, .reusable = false}, SHIFT(1967), + [5860] = {.count = 1, .reusable = false}, SHIFT(2570), + [5862] = {.count = 1, .reusable = true}, SHIFT(2571), + [5864] = {.count = 1, .reusable = true}, SHIFT(2572), + [5866] = {.count = 1, .reusable = false}, SHIFT(2573), + [5868] = {.count = 1, .reusable = true}, SHIFT(2574), + [5870] = {.count = 1, .reusable = true}, SHIFT(2575), + [5872] = {.count = 1, .reusable = true}, SHIFT(2576), + [5874] = {.count = 1, .reusable = true}, SHIFT(2577), + [5876] = {.count = 1, .reusable = true}, SHIFT(2578), + [5878] = {.count = 1, .reusable = true}, SHIFT(2579), + [5880] = {.count = 1, .reusable = true}, SHIFT(2580), + [5882] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [5884] = {.count = 1, .reusable = true}, SHIFT(2584), + [5886] = {.count = 1, .reusable = true}, SHIFT(2588), + [5888] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [5890] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [5892] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [5894] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), + [5896] = {.count = 1, .reusable = true}, SHIFT(2591), + [5898] = {.count = 1, .reusable = true}, SHIFT(2592), + [5900] = {.count = 1, .reusable = true}, SHIFT(2595), + [5902] = {.count = 1, .reusable = true}, SHIFT(2599), + [5904] = {.count = 1, .reusable = true}, SHIFT(2600), + [5906] = {.count = 1, .reusable = true}, SHIFT(2604), + [5908] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [5910] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [5912] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [5914] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [5916] = {.count = 1, .reusable = true}, SHIFT(2605), + [5918] = {.count = 1, .reusable = true}, SHIFT(2606), + [5920] = {.count = 1, .reusable = false}, SHIFT(2607), + [5922] = {.count = 1, .reusable = true}, SHIFT(2608), + [5924] = {.count = 1, .reusable = true}, SHIFT(2610), + [5926] = {.count = 1, .reusable = true}, SHIFT(2611), + [5928] = {.count = 1, .reusable = true}, SHIFT(2612), + [5930] = {.count = 1, .reusable = true}, SHIFT(2613), + [5932] = {.count = 1, .reusable = true}, SHIFT(2614), + [5934] = {.count = 1, .reusable = true}, SHIFT(2615), + [5936] = {.count = 1, .reusable = false}, SHIFT(2616), + [5938] = {.count = 1, .reusable = true}, SHIFT(2616), + [5940] = {.count = 1, .reusable = true}, SHIFT(2617), + [5942] = {.count = 1, .reusable = false}, SHIFT(2618), + [5944] = {.count = 1, .reusable = true}, SHIFT(2618), + [5946] = {.count = 1, .reusable = true}, SHIFT(2619), + [5948] = {.count = 1, .reusable = false}, SHIFT(2620), + [5950] = {.count = 1, .reusable = true}, SHIFT(2620), + [5952] = {.count = 1, .reusable = true}, SHIFT(2621), + [5954] = {.count = 1, .reusable = true}, SHIFT(2622), + [5956] = {.count = 1, .reusable = true}, SHIFT(2623), + [5958] = {.count = 1, .reusable = true}, SHIFT(2624), + [5960] = {.count = 1, .reusable = true}, SHIFT(2625), + [5962] = {.count = 1, .reusable = false}, SHIFT(2626), + [5964] = {.count = 1, .reusable = true}, SHIFT(2626), + [5966] = {.count = 1, .reusable = true}, SHIFT(2627), + [5968] = {.count = 1, .reusable = false}, SHIFT(2628), + [5970] = {.count = 1, .reusable = true}, SHIFT(2628), + [5972] = {.count = 1, .reusable = true}, SHIFT(2629), + [5974] = {.count = 1, .reusable = false}, SHIFT(2630), + [5976] = {.count = 1, .reusable = true}, SHIFT(2630), + [5978] = {.count = 1, .reusable = true}, SHIFT(2631), + [5980] = {.count = 1, .reusable = true}, SHIFT(2632), + [5982] = {.count = 1, .reusable = true}, SHIFT(2633), + [5984] = {.count = 1, .reusable = true}, SHIFT(2634), + [5986] = {.count = 1, .reusable = true}, SHIFT(2635), + [5988] = {.count = 1, .reusable = true}, SHIFT(2636), + [5990] = {.count = 1, .reusable = true}, SHIFT(2637), + [5992] = {.count = 1, .reusable = true}, SHIFT(2638), + [5994] = {.count = 1, .reusable = true}, SHIFT(2639), + [5996] = {.count = 1, .reusable = true}, SHIFT(2640), + [5998] = {.count = 1, .reusable = true}, SHIFT(2641), + [6000] = {.count = 1, .reusable = true}, SHIFT(2642), + [6002] = {.count = 1, .reusable = true}, SHIFT(2643), + [6004] = {.count = 1, .reusable = true}, SHIFT(2644), + [6006] = {.count = 1, .reusable = true}, SHIFT(2645), + [6008] = {.count = 1, .reusable = false}, SHIFT(2646), + [6010] = {.count = 1, .reusable = true}, SHIFT(2646), + [6012] = {.count = 1, .reusable = true}, SHIFT(2647), + [6014] = {.count = 1, .reusable = false}, SHIFT(2648), + [6016] = {.count = 1, .reusable = true}, SHIFT(2648), + [6018] = {.count = 1, .reusable = true}, SHIFT(2649), + [6020] = {.count = 1, .reusable = false}, SHIFT(2650), + [6022] = {.count = 1, .reusable = true}, SHIFT(2650), + [6024] = {.count = 1, .reusable = true}, SHIFT(2651), + [6026] = {.count = 1, .reusable = true}, SHIFT(2652), + [6028] = {.count = 1, .reusable = true}, SHIFT(2653), + [6030] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), + [6032] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), + [6034] = {.count = 1, .reusable = true}, SHIFT(2654), + [6036] = {.count = 1, .reusable = true}, SHIFT(2655), + [6038] = {.count = 1, .reusable = true}, SHIFT(2656), + [6040] = {.count = 1, .reusable = true}, SHIFT(2657), + [6042] = {.count = 1, .reusable = true}, SHIFT(2659), + [6044] = {.count = 1, .reusable = false}, SHIFT(2661), + [6046] = {.count = 1, .reusable = false}, SHIFT(2662), + [6048] = {.count = 1, .reusable = true}, SHIFT(2664), + [6050] = {.count = 1, .reusable = true}, SHIFT(2665), + [6052] = {.count = 1, .reusable = false}, SHIFT(2666), + [6054] = {.count = 1, .reusable = false}, SHIFT(2664), + [6056] = {.count = 1, .reusable = true}, SHIFT(2667), + [6058] = {.count = 1, .reusable = true}, SHIFT(2668), + [6060] = {.count = 1, .reusable = true}, SHIFT(2669), + [6062] = {.count = 1, .reusable = false}, SHIFT(2670), + [6064] = {.count = 1, .reusable = false}, SHIFT(2669), + [6066] = {.count = 1, .reusable = true}, SHIFT(2682), + [6068] = {.count = 1, .reusable = true}, SHIFT(2683), + [6070] = {.count = 1, .reusable = false}, SHIFT(2684), + [6072] = {.count = 1, .reusable = true}, SHIFT(2684), + [6074] = {.count = 1, .reusable = true}, SHIFT(2685), + [6076] = {.count = 1, .reusable = false}, SHIFT(2686), + [6078] = {.count = 1, .reusable = true}, SHIFT(2686), + [6080] = {.count = 1, .reusable = true}, SHIFT(2687), + [6082] = {.count = 1, .reusable = true}, SHIFT(2689), + [6084] = {.count = 1, .reusable = true}, SHIFT(2690), + [6086] = {.count = 1, .reusable = true}, SHIFT(2691), + [6088] = {.count = 1, .reusable = true}, SHIFT(2692), + [6090] = {.count = 1, .reusable = true}, SHIFT(2693), + [6092] = {.count = 1, .reusable = false}, SHIFT(2695), + [6094] = {.count = 1, .reusable = false}, SHIFT(2696), + [6096] = {.count = 1, .reusable = true}, SHIFT(2697), + [6098] = {.count = 1, .reusable = true}, SHIFT(2698), + [6100] = {.count = 1, .reusable = true}, SHIFT(2699), + [6102] = {.count = 1, .reusable = false}, SHIFT(2700), + [6104] = {.count = 1, .reusable = false}, SHIFT(2699), + [6106] = {.count = 1, .reusable = true}, SHIFT(2702), + [6108] = {.count = 1, .reusable = false}, SHIFT(2704), + [6110] = {.count = 1, .reusable = true}, SHIFT(2704), + [6112] = {.count = 1, .reusable = true}, SHIFT(2703), + [6114] = {.count = 1, .reusable = true}, SHIFT(2705), + [6116] = {.count = 1, .reusable = false}, SHIFT(2707), + [6118] = {.count = 1, .reusable = true}, SHIFT(2707), + [6120] = {.count = 1, .reusable = true}, SHIFT(2706), + [6122] = {.count = 1, .reusable = true}, SHIFT(2708), + [6124] = {.count = 1, .reusable = false}, SHIFT(2710), + [6126] = {.count = 1, .reusable = true}, SHIFT(2710), + [6128] = {.count = 1, .reusable = true}, SHIFT(2709), + [6130] = {.count = 1, .reusable = true}, SHIFT(2711), + [6132] = {.count = 1, .reusable = true}, SHIFT(2712), + [6134] = {.count = 1, .reusable = false}, SHIFT(2712), + [6136] = {.count = 1, .reusable = true}, SHIFT(2715), + [6138] = {.count = 1, .reusable = false}, SHIFT(2715), + [6140] = {.count = 1, .reusable = true}, SHIFT(2718), + [6142] = {.count = 1, .reusable = true}, SHIFT(2719), + [6144] = {.count = 1, .reusable = false}, SHIFT(2719), + [6146] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2263), + [6149] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2264), + [6152] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2265), + [6155] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2266), + [6158] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2267), + [6161] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2268), + [6164] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2269), + [6167] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2270), + [6170] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2271), + [6173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2272), + [6176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2267), + [6179] = {.count = 1, .reusable = true}, SHIFT(2722), + [6181] = {.count = 1, .reusable = false}, SHIFT(2724), + [6183] = {.count = 1, .reusable = false}, SHIFT(2725), + [6185] = {.count = 1, .reusable = true}, SHIFT(2726), + [6187] = {.count = 1, .reusable = true}, SHIFT(2727), + [6189] = {.count = 1, .reusable = true}, SHIFT(2728), + [6191] = {.count = 1, .reusable = false}, SHIFT(2729), + [6193] = {.count = 1, .reusable = false}, SHIFT(2728), + [6195] = {.count = 1, .reusable = true}, SHIFT(2731), + [6197] = {.count = 1, .reusable = false}, SHIFT(2733), + [6199] = {.count = 1, .reusable = true}, SHIFT(2733), + [6201] = {.count = 1, .reusable = true}, SHIFT(2732), + [6203] = {.count = 1, .reusable = true}, SHIFT(2734), + [6205] = {.count = 1, .reusable = false}, SHIFT(2736), + [6207] = {.count = 1, .reusable = true}, SHIFT(2736), + [6209] = {.count = 1, .reusable = true}, SHIFT(2735), + [6211] = {.count = 1, .reusable = true}, SHIFT(2737), + [6213] = {.count = 1, .reusable = false}, SHIFT(2739), + [6215] = {.count = 1, .reusable = true}, SHIFT(2739), + [6217] = {.count = 1, .reusable = true}, SHIFT(2738), + [6219] = {.count = 1, .reusable = true}, SHIFT(2740), + [6221] = {.count = 1, .reusable = true}, SHIFT(2741), + [6223] = {.count = 1, .reusable = false}, SHIFT(2741), + [6225] = {.count = 1, .reusable = true}, SHIFT(2744), + [6227] = {.count = 1, .reusable = false}, SHIFT(2744), + [6229] = {.count = 1, .reusable = true}, SHIFT(2747), + [6231] = {.count = 1, .reusable = true}, SHIFT(2748), + [6233] = {.count = 1, .reusable = false}, SHIFT(2748), + [6235] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2275), + [6238] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2276), + [6241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2277), + [6244] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2278), + [6247] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2279), + [6250] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2280), + [6253] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2281), + [6256] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2282), + [6259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2283), + [6262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2278), + [6265] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2285), + [6268] = {.count = 1, .reusable = false}, SHIFT(2751), + [6270] = {.count = 1, .reusable = true}, SHIFT(2752), + [6272] = {.count = 1, .reusable = false}, SHIFT(2753), + [6274] = {.count = 1, .reusable = true}, SHIFT(2754), + [6276] = {.count = 1, .reusable = true}, SHIFT(2756), + [6278] = {.count = 1, .reusable = true}, SHIFT(2757), + [6280] = {.count = 1, .reusable = false}, SHIFT(2759), + [6282] = {.count = 1, .reusable = true}, SHIFT(2759), + [6284] = {.count = 1, .reusable = true}, SHIFT(2758), + [6286] = {.count = 1, .reusable = true}, SHIFT(2760), + [6288] = {.count = 1, .reusable = false}, SHIFT(2762), + [6290] = {.count = 1, .reusable = true}, SHIFT(2762), + [6292] = {.count = 1, .reusable = true}, SHIFT(2761), + [6294] = {.count = 1, .reusable = false}, SHIFT(2764), + [6296] = {.count = 1, .reusable = true}, SHIFT(2764), + [6298] = {.count = 1, .reusable = true}, SHIFT(2763), + [6300] = {.count = 1, .reusable = true}, SHIFT(2765), + [6302] = {.count = 1, .reusable = true}, SHIFT(2766), + [6304] = {.count = 1, .reusable = true}, SHIFT(2767), + [6306] = {.count = 1, .reusable = true}, SHIFT(2768), + [6308] = {.count = 1, .reusable = true}, SHIFT(2769), + [6310] = {.count = 1, .reusable = true}, SHIFT(2770), + [6312] = {.count = 1, .reusable = true}, SHIFT(2771), + [6314] = {.count = 1, .reusable = false}, SHIFT(2771), + [6316] = {.count = 1, .reusable = true}, SHIFT(2772), + [6318] = {.count = 1, .reusable = false}, SHIFT(2772), + [6320] = {.count = 1, .reusable = true}, SHIFT(2773), + [6322] = {.count = 1, .reusable = true}, SHIFT(2774), + [6324] = {.count = 1, .reusable = false}, SHIFT(2774), + [6326] = {.count = 1, .reusable = true}, SHIFT(2776), + [6328] = {.count = 1, .reusable = true}, SHIFT(2777), + [6330] = {.count = 1, .reusable = true}, SHIFT(2778), + [6332] = {.count = 1, .reusable = false}, SHIFT(2780), + [6334] = {.count = 1, .reusable = false}, SHIFT(2781), + [6336] = {.count = 1, .reusable = true}, SHIFT(2783), + [6338] = {.count = 1, .reusable = true}, SHIFT(2784), + [6340] = {.count = 1, .reusable = false}, SHIFT(2785), + [6342] = {.count = 1, .reusable = false}, SHIFT(2783), + [6344] = {.count = 1, .reusable = true}, SHIFT(2786), + [6346] = {.count = 1, .reusable = true}, SHIFT(2787), + [6348] = {.count = 1, .reusable = true}, SHIFT(2788), + [6350] = {.count = 1, .reusable = false}, SHIFT(2789), + [6352] = {.count = 1, .reusable = false}, SHIFT(2788), + [6354] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2312), + [6357] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2314), + [6360] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2314), + [6363] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2315), + [6366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2313), + [6369] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2316), + [6372] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1961), + [6375] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1962), + [6378] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2317), + [6381] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1964), + [6384] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1965), + [6387] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1966), + [6390] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1967), + [6393] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2317), + [6396] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [6398] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [6400] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [6402] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [6404] = {.count = 1, .reusable = true}, SHIFT(2801), + [6406] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [6408] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [6410] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [6412] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5), + [6414] = {.count = 1, .reusable = true}, SHIFT(2802), + [6416] = {.count = 1, .reusable = true}, SHIFT(2803), + [6418] = {.count = 1, .reusable = true}, SHIFT(2804), + [6420] = {.count = 1, .reusable = true}, SHIFT(2809), + [6422] = {.count = 1, .reusable = true}, SHIFT(2810), + [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 = false}, SHIFT(2817), + [6432] = {.count = 1, .reusable = true}, SHIFT(2817), + [6434] = {.count = 1, .reusable = true}, SHIFT(2818), + [6436] = {.count = 1, .reusable = false}, SHIFT(2819), + [6438] = {.count = 1, .reusable = true}, SHIFT(2819), + [6440] = {.count = 1, .reusable = true}, SHIFT(2820), + [6442] = {.count = 1, .reusable = false}, SHIFT(2821), + [6444] = {.count = 1, .reusable = true}, SHIFT(2821), + [6446] = {.count = 1, .reusable = true}, SHIFT(2822), + [6448] = {.count = 1, .reusable = true}, SHIFT(2823), + [6450] = {.count = 1, .reusable = true}, SHIFT(2824), + [6452] = {.count = 1, .reusable = true}, SHIFT(2825), + [6454] = {.count = 1, .reusable = true}, SHIFT(2826), + [6456] = {.count = 1, .reusable = true}, SHIFT(2827), + [6458] = {.count = 1, .reusable = true}, SHIFT(2828), + [6460] = {.count = 1, .reusable = true}, SHIFT(2829), + [6462] = {.count = 1, .reusable = true}, SHIFT(2830), + [6464] = {.count = 1, .reusable = true}, SHIFT(2831), + [6466] = {.count = 1, .reusable = true}, SHIFT(2832), + [6468] = {.count = 1, .reusable = false}, SHIFT(2834), + [6470] = {.count = 1, .reusable = false}, SHIFT(2835), + [6472] = {.count = 1, .reusable = true}, SHIFT(2836), + [6474] = {.count = 1, .reusable = true}, SHIFT(2837), + [6476] = {.count = 1, .reusable = true}, SHIFT(2838), + [6478] = {.count = 1, .reusable = false}, SHIFT(2839), + [6480] = {.count = 1, .reusable = false}, SHIFT(2838), + [6482] = {.count = 1, .reusable = true}, SHIFT(2841), + [6484] = {.count = 1, .reusable = false}, SHIFT(2843), + [6486] = {.count = 1, .reusable = true}, SHIFT(2843), + [6488] = {.count = 1, .reusable = true}, SHIFT(2842), + [6490] = {.count = 1, .reusable = true}, SHIFT(2844), + [6492] = {.count = 1, .reusable = false}, SHIFT(2846), + [6494] = {.count = 1, .reusable = true}, SHIFT(2846), + [6496] = {.count = 1, .reusable = true}, SHIFT(2845), + [6498] = {.count = 1, .reusable = true}, SHIFT(2847), + [6500] = {.count = 1, .reusable = false}, SHIFT(2849), + [6502] = {.count = 1, .reusable = true}, SHIFT(2849), + [6504] = {.count = 1, .reusable = true}, SHIFT(2848), + [6506] = {.count = 1, .reusable = true}, SHIFT(2850), + [6508] = {.count = 1, .reusable = true}, SHIFT(2851), + [6510] = {.count = 1, .reusable = false}, SHIFT(2851), + [6512] = {.count = 1, .reusable = true}, SHIFT(2854), + [6514] = {.count = 1, .reusable = false}, SHIFT(2854), + [6516] = {.count = 1, .reusable = true}, SHIFT(2857), + [6518] = {.count = 1, .reusable = true}, SHIFT(2858), + [6520] = {.count = 1, .reusable = false}, SHIFT(2858), + [6522] = {.count = 1, .reusable = false}, SHIFT(2862), + [6524] = {.count = 1, .reusable = true}, SHIFT(2862), + [6526] = {.count = 1, .reusable = true}, SHIFT(2863), + [6528] = {.count = 1, .reusable = true}, SHIFT(2864), + [6530] = {.count = 1, .reusable = false}, SHIFT(2865), + [6532] = {.count = 1, .reusable = true}, SHIFT(2865), + [6534] = {.count = 1, .reusable = true}, SHIFT(2866), + [6536] = {.count = 1, .reusable = true}, SHIFT(2867), + [6538] = {.count = 1, .reusable = true}, SHIFT(2868), + [6540] = {.count = 1, .reusable = true}, SHIFT(2869), + [6542] = {.count = 1, .reusable = true}, SHIFT(2871), + [6544] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2488), + [6547] = {.count = 1, .reusable = false}, SHIFT(2873), + [6549] = {.count = 1, .reusable = true}, SHIFT(2874), + [6551] = {.count = 1, .reusable = false}, SHIFT(2875), + [6553] = {.count = 1, .reusable = true}, SHIFT(2876), + [6555] = {.count = 1, .reusable = true}, SHIFT(2878), + [6557] = {.count = 1, .reusable = true}, SHIFT(2879), + [6559] = {.count = 1, .reusable = false}, SHIFT(2881), + [6561] = {.count = 1, .reusable = true}, SHIFT(2881), + [6563] = {.count = 1, .reusable = true}, SHIFT(2880), + [6565] = {.count = 1, .reusable = true}, SHIFT(2882), + [6567] = {.count = 1, .reusable = false}, SHIFT(2884), + [6569] = {.count = 1, .reusable = true}, SHIFT(2884), + [6571] = {.count = 1, .reusable = true}, SHIFT(2883), + [6573] = {.count = 1, .reusable = false}, SHIFT(2886), + [6575] = {.count = 1, .reusable = true}, SHIFT(2886), + [6577] = {.count = 1, .reusable = true}, SHIFT(2885), + [6579] = {.count = 1, .reusable = true}, SHIFT(2887), + [6581] = {.count = 1, .reusable = true}, SHIFT(2888), + [6583] = {.count = 1, .reusable = true}, SHIFT(2889), + [6585] = {.count = 1, .reusable = true}, SHIFT(2890), + [6587] = {.count = 1, .reusable = true}, SHIFT(2891), + [6589] = {.count = 1, .reusable = true}, SHIFT(2892), + [6591] = {.count = 1, .reusable = true}, SHIFT(2893), + [6593] = {.count = 1, .reusable = false}, SHIFT(2893), + [6595] = {.count = 1, .reusable = true}, SHIFT(2894), + [6597] = {.count = 1, .reusable = false}, SHIFT(2894), + [6599] = {.count = 1, .reusable = true}, SHIFT(2895), + [6601] = {.count = 1, .reusable = true}, SHIFT(2896), + [6603] = {.count = 1, .reusable = false}, SHIFT(2896), + [6605] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2511), + [6608] = {.count = 1, .reusable = false}, SHIFT(2897), + [6610] = {.count = 1, .reusable = true}, SHIFT(2898), + [6612] = {.count = 1, .reusable = false}, SHIFT(2899), + [6614] = {.count = 1, .reusable = true}, SHIFT(2900), + [6616] = {.count = 1, .reusable = true}, SHIFT(2902), + [6618] = {.count = 1, .reusable = true}, SHIFT(2903), + [6620] = {.count = 1, .reusable = false}, SHIFT(2905), + [6622] = {.count = 1, .reusable = true}, SHIFT(2905), + [6624] = {.count = 1, .reusable = true}, SHIFT(2904), + [6626] = {.count = 1, .reusable = true}, SHIFT(2906), + [6628] = {.count = 1, .reusable = false}, SHIFT(2908), + [6630] = {.count = 1, .reusable = true}, SHIFT(2908), + [6632] = {.count = 1, .reusable = true}, SHIFT(2907), + [6634] = {.count = 1, .reusable = false}, SHIFT(2910), + [6636] = {.count = 1, .reusable = true}, SHIFT(2910), + [6638] = {.count = 1, .reusable = true}, SHIFT(2909), + [6640] = {.count = 1, .reusable = true}, SHIFT(2911), + [6642] = {.count = 1, .reusable = true}, SHIFT(2912), + [6644] = {.count = 1, .reusable = true}, SHIFT(2913), + [6646] = {.count = 1, .reusable = true}, SHIFT(2914), + [6648] = {.count = 1, .reusable = true}, SHIFT(2915), + [6650] = {.count = 1, .reusable = true}, SHIFT(2916), + [6652] = {.count = 1, .reusable = true}, SHIFT(2917), + [6654] = {.count = 1, .reusable = false}, SHIFT(2917), + [6656] = {.count = 1, .reusable = true}, SHIFT(2918), + [6658] = {.count = 1, .reusable = false}, SHIFT(2918), + [6660] = {.count = 1, .reusable = true}, SHIFT(2919), + [6662] = {.count = 1, .reusable = true}, SHIFT(2920), + [6664] = {.count = 1, .reusable = false}, SHIFT(2920), + [6666] = {.count = 1, .reusable = true}, SHIFT(2921), + [6668] = {.count = 1, .reusable = true}, SHIFT(2922), + [6670] = {.count = 1, .reusable = false}, SHIFT(2923), + [6672] = {.count = 1, .reusable = true}, SHIFT(2924), + [6674] = {.count = 1, .reusable = true}, SHIFT(2926), + [6676] = {.count = 1, .reusable = true}, SHIFT(2927), + [6678] = {.count = 1, .reusable = true}, SHIFT(2928), + [6680] = {.count = 1, .reusable = true}, SHIFT(2929), + [6682] = {.count = 1, .reusable = true}, SHIFT(2930), + [6684] = {.count = 1, .reusable = true}, SHIFT(2931), + [6686] = {.count = 1, .reusable = false}, SHIFT(2932), + [6688] = {.count = 1, .reusable = true}, SHIFT(2932), + [6690] = {.count = 1, .reusable = true}, SHIFT(2933), + [6692] = {.count = 1, .reusable = false}, SHIFT(2934), + [6694] = {.count = 1, .reusable = true}, SHIFT(2934), + [6696] = {.count = 1, .reusable = true}, SHIFT(2935), + [6698] = {.count = 1, .reusable = false}, SHIFT(2936), + [6700] = {.count = 1, .reusable = true}, SHIFT(2936), + [6702] = {.count = 1, .reusable = true}, SHIFT(2937), + [6704] = {.count = 1, .reusable = true}, SHIFT(2938), + [6706] = {.count = 1, .reusable = true}, SHIFT(2939), + [6708] = {.count = 1, .reusable = false}, SHIFT(2941), + [6710] = {.count = 1, .reusable = false}, SHIFT(2942), + [6712] = {.count = 1, .reusable = true}, SHIFT(2943), + [6714] = {.count = 1, .reusable = true}, SHIFT(2944), + [6716] = {.count = 1, .reusable = true}, SHIFT(2945), + [6718] = {.count = 1, .reusable = false}, SHIFT(2946), + [6720] = {.count = 1, .reusable = false}, SHIFT(2945), + [6722] = {.count = 1, .reusable = true}, SHIFT(2948), + [6724] = {.count = 1, .reusable = false}, SHIFT(2950), + [6726] = {.count = 1, .reusable = true}, SHIFT(2950), + [6728] = {.count = 1, .reusable = true}, SHIFT(2949), + [6730] = {.count = 1, .reusable = true}, SHIFT(2951), + [6732] = {.count = 1, .reusable = false}, SHIFT(2953), + [6734] = {.count = 1, .reusable = true}, SHIFT(2953), + [6736] = {.count = 1, .reusable = true}, SHIFT(2952), + [6738] = {.count = 1, .reusable = true}, SHIFT(2954), + [6740] = {.count = 1, .reusable = false}, SHIFT(2956), + [6742] = {.count = 1, .reusable = true}, SHIFT(2956), + [6744] = {.count = 1, .reusable = true}, SHIFT(2955), + [6746] = {.count = 1, .reusable = true}, SHIFT(2957), + [6748] = {.count = 1, .reusable = true}, SHIFT(2958), + [6750] = {.count = 1, .reusable = false}, SHIFT(2958), + [6752] = {.count = 1, .reusable = true}, SHIFT(2961), + [6754] = {.count = 1, .reusable = false}, SHIFT(2961), + [6756] = {.count = 1, .reusable = true}, SHIFT(2964), + [6758] = {.count = 1, .reusable = true}, SHIFT(2965), + [6760] = {.count = 1, .reusable = false}, SHIFT(2965), + [6762] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), + [6764] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6766] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6768] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), + [6770] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), + [6772] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), + [6774] = {.count = 1, .reusable = true}, SHIFT(2968), + [6776] = {.count = 1, .reusable = true}, SHIFT(2969), + [6778] = {.count = 1, .reusable = true}, SHIFT(2972), + [6780] = {.count = 1, .reusable = true}, SHIFT(2973), + [6782] = {.count = 1, .reusable = true}, SHIFT(2976), + [6784] = {.count = 1, .reusable = true}, SHIFT(2977), + [6786] = {.count = 1, .reusable = true}, SHIFT(2978), + [6788] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2659), + [6791] = {.count = 1, .reusable = false}, SHIFT(2979), + [6793] = {.count = 1, .reusable = true}, SHIFT(2980), + [6795] = {.count = 1, .reusable = false}, SHIFT(2981), + [6797] = {.count = 1, .reusable = true}, SHIFT(2982), + [6799] = {.count = 1, .reusable = true}, SHIFT(2984), + [6801] = {.count = 1, .reusable = true}, SHIFT(2985), + [6803] = {.count = 1, .reusable = false}, SHIFT(2987), + [6805] = {.count = 1, .reusable = true}, SHIFT(2987), + [6807] = {.count = 1, .reusable = true}, SHIFT(2986), + [6809] = {.count = 1, .reusable = true}, SHIFT(2988), + [6811] = {.count = 1, .reusable = false}, SHIFT(2990), + [6813] = {.count = 1, .reusable = true}, SHIFT(2990), + [6815] = {.count = 1, .reusable = true}, SHIFT(2989), + [6817] = {.count = 1, .reusable = false}, SHIFT(2992), + [6819] = {.count = 1, .reusable = true}, SHIFT(2992), + [6821] = {.count = 1, .reusable = true}, SHIFT(2991), + [6823] = {.count = 1, .reusable = true}, SHIFT(2993), + [6825] = {.count = 1, .reusable = true}, SHIFT(2994), + [6827] = {.count = 1, .reusable = true}, SHIFT(2995), + [6829] = {.count = 1, .reusable = true}, SHIFT(2996), + [6831] = {.count = 1, .reusable = true}, SHIFT(2997), + [6833] = {.count = 1, .reusable = true}, SHIFT(2998), + [6835] = {.count = 1, .reusable = true}, SHIFT(2999), + [6837] = {.count = 1, .reusable = false}, SHIFT(2999), + [6839] = {.count = 1, .reusable = true}, SHIFT(3000), + [6841] = {.count = 1, .reusable = false}, SHIFT(3000), + [6843] = {.count = 1, .reusable = true}, SHIFT(3001), + [6845] = {.count = 1, .reusable = true}, SHIFT(3002), + [6847] = {.count = 1, .reusable = false}, SHIFT(3002), + [6849] = {.count = 1, .reusable = true}, SHIFT(3003), + [6851] = {.count = 1, .reusable = true}, SHIFT(3004), + [6853] = {.count = 1, .reusable = true}, SHIFT(3006), + [6855] = {.count = 1, .reusable = true}, SHIFT(3007), + [6857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2685), + [6860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2686), + [6863] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2686), + [6866] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2687), + [6869] = {.count = 1, .reusable = true}, SHIFT(3009), + [6871] = {.count = 1, .reusable = true}, SHIFT(3010), + [6873] = {.count = 1, .reusable = true}, SHIFT(3011), + [6875] = {.count = 1, .reusable = false}, SHIFT(3012), + [6877] = {.count = 1, .reusable = true}, SHIFT(3013), + [6879] = {.count = 1, .reusable = true}, SHIFT(3015), + [6881] = {.count = 1, .reusable = true}, SHIFT(3016), + [6883] = {.count = 1, .reusable = true}, SHIFT(3017), + [6885] = {.count = 1, .reusable = true}, SHIFT(3018), + [6887] = {.count = 1, .reusable = true}, SHIFT(3019), + [6889] = {.count = 1, .reusable = true}, SHIFT(3020), + [6891] = {.count = 1, .reusable = false}, SHIFT(3021), + [6893] = {.count = 1, .reusable = true}, SHIFT(3021), + [6895] = {.count = 1, .reusable = true}, SHIFT(3022), + [6897] = {.count = 1, .reusable = false}, SHIFT(3023), + [6899] = {.count = 1, .reusable = true}, SHIFT(3023), + [6901] = {.count = 1, .reusable = true}, SHIFT(3024), + [6903] = {.count = 1, .reusable = false}, SHIFT(3025), + [6905] = {.count = 1, .reusable = true}, SHIFT(3025), + [6907] = {.count = 1, .reusable = true}, SHIFT(3026), + [6909] = {.count = 1, .reusable = true}, SHIFT(3027), + [6911] = {.count = 1, .reusable = true}, SHIFT(3028), + [6913] = {.count = 1, .reusable = true}, SHIFT(3029), + [6915] = {.count = 1, .reusable = false}, SHIFT(3030), + [6917] = {.count = 1, .reusable = true}, SHIFT(3031), + [6919] = {.count = 1, .reusable = true}, SHIFT(3033), + [6921] = {.count = 1, .reusable = true}, SHIFT(3034), + [6923] = {.count = 1, .reusable = true}, SHIFT(3035), + [6925] = {.count = 1, .reusable = true}, SHIFT(3036), + [6927] = {.count = 1, .reusable = true}, SHIFT(3037), + [6929] = {.count = 1, .reusable = true}, SHIFT(3038), + [6931] = {.count = 1, .reusable = false}, SHIFT(3039), + [6933] = {.count = 1, .reusable = true}, SHIFT(3039), + [6935] = {.count = 1, .reusable = true}, SHIFT(3040), + [6937] = {.count = 1, .reusable = false}, SHIFT(3041), + [6939] = {.count = 1, .reusable = true}, SHIFT(3041), + [6941] = {.count = 1, .reusable = true}, SHIFT(3042), + [6943] = {.count = 1, .reusable = false}, SHIFT(3043), + [6945] = {.count = 1, .reusable = true}, SHIFT(3043), + [6947] = {.count = 1, .reusable = true}, SHIFT(3044), + [6949] = {.count = 1, .reusable = true}, SHIFT(3045), + [6951] = {.count = 1, .reusable = true}, SHIFT(3046), + [6953] = {.count = 1, .reusable = true}, SHIFT(3047), + [6955] = {.count = 1, .reusable = true}, SHIFT(3048), + [6957] = {.count = 1, .reusable = false}, SHIFT(3049), + [6959] = {.count = 1, .reusable = true}, SHIFT(3049), + [6961] = {.count = 1, .reusable = true}, SHIFT(3050), + [6963] = {.count = 1, .reusable = false}, SHIFT(3051), + [6965] = {.count = 1, .reusable = true}, SHIFT(3051), + [6967] = {.count = 1, .reusable = true}, SHIFT(3052), + [6969] = {.count = 1, .reusable = false}, SHIFT(3053), + [6971] = {.count = 1, .reusable = true}, SHIFT(3053), + [6973] = {.count = 1, .reusable = true}, SHIFT(3054), + [6975] = {.count = 1, .reusable = true}, SHIFT(3055), + [6977] = {.count = 1, .reusable = true}, SHIFT(3056), + [6979] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2778), + [6982] = {.count = 1, .reusable = false}, SHIFT(3057), + [6984] = {.count = 1, .reusable = true}, SHIFT(3058), + [6986] = {.count = 1, .reusable = false}, SHIFT(3059), + [6988] = {.count = 1, .reusable = true}, SHIFT(3060), + [6990] = {.count = 1, .reusable = true}, SHIFT(3062), + [6992] = {.count = 1, .reusable = true}, SHIFT(3063), + [6994] = {.count = 1, .reusable = false}, SHIFT(3065), + [6996] = {.count = 1, .reusable = true}, SHIFT(3065), + [6998] = {.count = 1, .reusable = true}, SHIFT(3064), + [7000] = {.count = 1, .reusable = true}, SHIFT(3066), + [7002] = {.count = 1, .reusable = false}, SHIFT(3068), + [7004] = {.count = 1, .reusable = true}, SHIFT(3068), + [7006] = {.count = 1, .reusable = true}, SHIFT(3067), + [7008] = {.count = 1, .reusable = false}, SHIFT(3070), + [7010] = {.count = 1, .reusable = true}, SHIFT(3070), + [7012] = {.count = 1, .reusable = true}, SHIFT(3069), + [7014] = {.count = 1, .reusable = true}, SHIFT(3071), + [7016] = {.count = 1, .reusable = true}, SHIFT(3072), + [7018] = {.count = 1, .reusable = true}, SHIFT(3073), + [7020] = {.count = 1, .reusable = true}, SHIFT(3074), + [7022] = {.count = 1, .reusable = true}, SHIFT(3075), + [7024] = {.count = 1, .reusable = true}, SHIFT(3076), + [7026] = {.count = 1, .reusable = true}, SHIFT(3077), + [7028] = {.count = 1, .reusable = false}, SHIFT(3077), + [7030] = {.count = 1, .reusable = true}, SHIFT(3078), + [7032] = {.count = 1, .reusable = false}, SHIFT(3078), + [7034] = {.count = 1, .reusable = true}, SHIFT(3079), + [7036] = {.count = 1, .reusable = true}, SHIFT(3080), + [7038] = {.count = 1, .reusable = false}, SHIFT(3080), + [7040] = {.count = 1, .reusable = true}, SHIFT(3081), + [7042] = {.count = 1, .reusable = true}, SHIFT(3082), + [7044] = {.count = 1, .reusable = true}, SHIFT(3083), + [7046] = {.count = 1, .reusable = true}, SHIFT(3084), + [7048] = {.count = 1, .reusable = false}, SHIFT(3085), + [7050] = {.count = 1, .reusable = true}, SHIFT(3086), + [7052] = {.count = 1, .reusable = true}, SHIFT(3088), + [7054] = {.count = 1, .reusable = true}, SHIFT(3089), + [7056] = {.count = 1, .reusable = true}, SHIFT(3090), + [7058] = {.count = 1, .reusable = true}, SHIFT(3091), + [7060] = {.count = 1, .reusable = true}, SHIFT(3092), + [7062] = {.count = 1, .reusable = true}, SHIFT(3093), + [7064] = {.count = 1, .reusable = false}, SHIFT(3094), + [7066] = {.count = 1, .reusable = true}, SHIFT(3094), + [7068] = {.count = 1, .reusable = true}, SHIFT(3095), + [7070] = {.count = 1, .reusable = false}, SHIFT(3096), + [7072] = {.count = 1, .reusable = true}, SHIFT(3096), + [7074] = {.count = 1, .reusable = true}, SHIFT(3097), + [7076] = {.count = 1, .reusable = false}, SHIFT(3098), + [7078] = {.count = 1, .reusable = true}, SHIFT(3098), + [7080] = {.count = 1, .reusable = true}, SHIFT(3099), + [7082] = {.count = 1, .reusable = true}, SHIFT(3100), + [7084] = {.count = 1, .reusable = true}, SHIFT(3103), + [7086] = {.count = 1, .reusable = true}, SHIFT(3104), + [7088] = {.count = 1, .reusable = true}, SHIFT(3105), + [7090] = {.count = 1, .reusable = false}, SHIFT(3106), + [7092] = {.count = 1, .reusable = true}, SHIFT(3106), + [7094] = {.count = 1, .reusable = true}, SHIFT(3107), + [7096] = {.count = 1, .reusable = false}, SHIFT(3108), + [7098] = {.count = 1, .reusable = true}, SHIFT(3108), + [7100] = {.count = 1, .reusable = true}, SHIFT(3109), + [7102] = {.count = 1, .reusable = false}, SHIFT(3110), + [7104] = {.count = 1, .reusable = true}, SHIFT(3110), + [7106] = {.count = 1, .reusable = true}, SHIFT(3111), + [7108] = {.count = 1, .reusable = true}, SHIFT(3112), + [7110] = {.count = 1, .reusable = true}, SHIFT(3113), + [7112] = {.count = 1, .reusable = true}, SHIFT(3114), + [7114] = {.count = 1, .reusable = true}, SHIFT(3115), + [7116] = {.count = 1, .reusable = true}, SHIFT(3116), + [7118] = {.count = 1, .reusable = false}, SHIFT(3117), + [7120] = {.count = 1, .reusable = true}, SHIFT(3117), + [7122] = {.count = 1, .reusable = true}, SHIFT(3118), + [7124] = {.count = 1, .reusable = false}, SHIFT(3119), + [7126] = {.count = 1, .reusable = true}, SHIFT(3119), + [7128] = {.count = 1, .reusable = true}, SHIFT(3120), + [7130] = {.count = 1, .reusable = false}, SHIFT(3121), + [7132] = {.count = 1, .reusable = true}, SHIFT(3121), + [7134] = {.count = 1, .reusable = true}, SHIFT(3122), + [7136] = {.count = 1, .reusable = true}, SHIFT(3123), + [7138] = {.count = 1, .reusable = true}, SHIFT(3124), + [7140] = {.count = 1, .reusable = true}, SHIFT(3125), + [7142] = {.count = 1, .reusable = true}, SHIFT(3126), + [7144] = {.count = 1, .reusable = true}, SHIFT(3127), + [7146] = {.count = 1, .reusable = true}, SHIFT(3128), + [7148] = {.count = 1, .reusable = true}, SHIFT(3129), + [7150] = {.count = 1, .reusable = false}, SHIFT(3130), + [7152] = {.count = 1, .reusable = true}, SHIFT(3131), + [7154] = {.count = 1, .reusable = true}, SHIFT(3133), + [7156] = {.count = 1, .reusable = true}, SHIFT(3134), + [7158] = {.count = 1, .reusable = true}, SHIFT(3135), + [7160] = {.count = 1, .reusable = true}, SHIFT(3136), + [7162] = {.count = 1, .reusable = true}, SHIFT(3137), + [7164] = {.count = 1, .reusable = true}, SHIFT(3138), + [7166] = {.count = 1, .reusable = false}, SHIFT(3139), + [7168] = {.count = 1, .reusable = true}, SHIFT(3139), + [7170] = {.count = 1, .reusable = true}, SHIFT(3140), + [7172] = {.count = 1, .reusable = false}, SHIFT(3141), + [7174] = {.count = 1, .reusable = true}, SHIFT(3141), + [7176] = {.count = 1, .reusable = true}, SHIFT(3142), + [7178] = {.count = 1, .reusable = false}, SHIFT(3143), + [7180] = {.count = 1, .reusable = true}, SHIFT(3143), + [7182] = {.count = 1, .reusable = true}, SHIFT(3144), + [7184] = {.count = 1, .reusable = true}, SHIFT(3145), + [7186] = {.count = 1, .reusable = true}, SHIFT(3146), + [7188] = {.count = 1, .reusable = true}, SHIFT(3147), + [7190] = {.count = 1, .reusable = true}, SHIFT(3148), + [7192] = {.count = 1, .reusable = false}, SHIFT(3149), + [7194] = {.count = 1, .reusable = true}, SHIFT(3149), + [7196] = {.count = 1, .reusable = true}, SHIFT(3150), + [7198] = {.count = 1, .reusable = false}, SHIFT(3151), + [7200] = {.count = 1, .reusable = true}, SHIFT(3151), + [7202] = {.count = 1, .reusable = true}, SHIFT(3152), + [7204] = {.count = 1, .reusable = false}, SHIFT(3153), + [7206] = {.count = 1, .reusable = true}, SHIFT(3153), + [7208] = {.count = 1, .reusable = true}, SHIFT(3154), + [7210] = {.count = 1, .reusable = true}, SHIFT(3155), + [7212] = {.count = 1, .reusable = true}, SHIFT(3156), + [7214] = {.count = 1, .reusable = true}, SHIFT(3157), + [7216] = {.count = 1, .reusable = true}, SHIFT(3158), + [7218] = {.count = 1, .reusable = true}, SHIFT(3159), + [7220] = {.count = 1, .reusable = true}, SHIFT(3160), + [7222] = {.count = 1, .reusable = true}, SHIFT(3161), + [7224] = {.count = 1, .reusable = true}, SHIFT(3162), + [7226] = {.count = 1, .reusable = true}, SHIFT(3163), + [7228] = {.count = 1, .reusable = true}, SHIFT(3164), + [7230] = {.count = 1, .reusable = true}, SHIFT(3165), + [7232] = {.count = 1, .reusable = false}, SHIFT(3166), + [7234] = {.count = 1, .reusable = true}, SHIFT(3166), + [7236] = {.count = 1, .reusable = true}, SHIFT(3167), + [7238] = {.count = 1, .reusable = false}, SHIFT(3168), + [7240] = {.count = 1, .reusable = true}, SHIFT(3168), + [7242] = {.count = 1, .reusable = true}, SHIFT(3169), + [7244] = {.count = 1, .reusable = false}, SHIFT(3170), + [7246] = {.count = 1, .reusable = true}, SHIFT(3170), + [7248] = {.count = 1, .reusable = true}, SHIFT(3171), + [7250] = {.count = 1, .reusable = true}, SHIFT(3172), + [7252] = {.count = 1, .reusable = true}, SHIFT(3173), + [7254] = {.count = 1, .reusable = true}, SHIFT(3174), + [7256] = {.count = 1, .reusable = true}, SHIFT(3175), + [7258] = {.count = 1, .reusable = true}, SHIFT(3176), + [7260] = {.count = 1, .reusable = true}, SHIFT(3177), + [7262] = {.count = 1, .reusable = true}, SHIFT(3178), + [7264] = {.count = 1, .reusable = true}, SHIFT(3179), }; void *tree_sitter_bash_external_scanner_create();